linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Takashi Iwai <tiwai@suse.de>,
	Johannes Berg <johannes.berg@intel.com>,
	Sedat Dilek <sedat.dilek@gmail.com>
Subject: [PATCH 5.11 024/210] rfkill: revert back to old userspace API by default
Date: Mon, 12 Apr 2021 10:38:49 +0200	[thread overview]
Message-ID: <20210412084016.812605974@linuxfoundation.org> (raw)
In-Reply-To: <20210412084016.009884719@linuxfoundation.org>

From: Johannes Berg <johannes.berg@intel.com>

commit 71826654ce40112f0651b6f4e94c422354f4adb6 upstream.

Recompiling with the new extended version of struct rfkill_event
broke systemd in *two* ways:
 - It used "sizeof(struct rfkill_event)" to read the event, but
   then complained if it actually got something != 8, this broke
   it on new kernels (that include the updated API);
 - It used sizeof(struct rfkill_event) to write a command, but
   didn't implement the intended expansion protocol where the
   kernel returns only how many bytes it accepted, and errored
   out due to the unexpected smaller size on kernels that didn't
   include the updated API.

Even though systemd has now been fixed, that fix may not be always
deployed, and other applications could potentially have similar
issues.

As such, in the interest of avoiding regressions, revert the
default API "struct rfkill_event" back to the original size.

Instead, add a new "struct rfkill_event_ext" that extends it by
the new field, and even more clearly document that applications
should be prepared for extensions in two ways:
 * write might only accept fewer bytes on older kernels, and
   will return how many to let userspace know which data may
   have been ignored;
 * read might return anything between 8 (the original size) and
   whatever size the application sized its buffer at, indicating
   how much event data was supported by the kernel.

Perhaps that will help avoid such issues in the future and we
won't have to come up with another version of the struct if we
ever need to extend it again.

Applications that want to take advantage of the new field will
have to be modified to use struct rfkill_event_ext instead now,
which comes with the danger of them having already been updated
to use it from 'struct rfkill_event', but I found no evidence
of that, and it's still relatively new.

Cc: stable@vger.kernel.org # 5.11
Reported-by: Takashi Iwai <tiwai@suse.de>
Tested-by: Sedat Dilek <sedat.dilek@gmail.com> # LLVM/Clang v12.0.0-r4 (x86-64)
Link: https://lore.kernel.org/r/20210319232510.f1a139cfdd9c.Ic5c7c9d1d28972059e132ea653a21a427c326678@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 include/uapi/linux/rfkill.h |   82 +++++++++++++++++++++++++++++++++++++-------
 net/rfkill/core.c           |    7 ++-
 2 files changed, 73 insertions(+), 16 deletions(-)

--- a/include/uapi/linux/rfkill.h
+++ b/include/uapi/linux/rfkill.h
@@ -86,34 +86,90 @@ enum rfkill_hard_block_reasons {
  * @op: operation code
  * @hard: hard state (0/1)
  * @soft: soft state (0/1)
+ *
+ * Structure used for userspace communication on /dev/rfkill,
+ * used for events from the kernel and control to the kernel.
+ */
+struct rfkill_event {
+	__u32 idx;
+	__u8  type;
+	__u8  op;
+	__u8  soft;
+	__u8  hard;
+} __attribute__((packed));
+
+/**
+ * struct rfkill_event_ext - events for userspace on /dev/rfkill
+ * @idx: index of dev rfkill
+ * @type: type of the rfkill struct
+ * @op: operation code
+ * @hard: hard state (0/1)
+ * @soft: soft state (0/1)
  * @hard_block_reasons: valid if hard is set. One or several reasons from
  *	&enum rfkill_hard_block_reasons.
  *
  * Structure used for userspace communication on /dev/rfkill,
  * used for events from the kernel and control to the kernel.
+ *
+ * See the extensibility docs below.
  */
-struct rfkill_event {
+struct rfkill_event_ext {
 	__u32 idx;
 	__u8  type;
 	__u8  op;
 	__u8  soft;
 	__u8  hard;
+
+	/*
+	 * older kernels will accept/send only up to this point,
+	 * and if extended further up to any chunk marked below
+	 */
+
 	__u8  hard_block_reasons;
 } __attribute__((packed));
 
-/*
- * We are planning to be backward and forward compatible with changes
- * to the event struct, by adding new, optional, members at the end.
- * When reading an event (whether the kernel from userspace or vice
- * versa) we need to accept anything that's at least as large as the
- * version 1 event size, but might be able to accept other sizes in
- * the future.
- *
- * One exception is the kernel -- we already have two event sizes in
- * that we've made the 'hard' member optional since our only option
- * is to ignore it anyway.
+/**
+ * DOC: Extensibility
+ *
+ * Originally, we had planned to allow backward and forward compatible
+ * changes by just adding fields at the end of the structure that are
+ * then not reported on older kernels on read(), and not written to by
+ * older kernels on write(), with the kernel reporting the size it did
+ * accept as the result.
+ *
+ * This would have allowed userspace to detect on read() and write()
+ * which kernel structure version it was dealing with, and if was just
+ * recompiled it would have gotten the new fields, but obviously not
+ * accessed them, but things should've continued to work.
+ *
+ * Unfortunately, while actually exercising this mechanism to add the
+ * hard block reasons field, we found that userspace (notably systemd)
+ * did all kinds of fun things not in line with this scheme:
+ *
+ * 1. treat the (expected) short writes as an error;
+ * 2. ask to read sizeof(struct rfkill_event) but then compare the
+ *    actual return value to RFKILL_EVENT_SIZE_V1 and treat any
+ *    mismatch as an error.
+ *
+ * As a consequence, just recompiling with a new struct version caused
+ * things to no longer work correctly on old and new kernels.
+ *
+ * Hence, we've rolled back &struct rfkill_event to the original version
+ * and added &struct rfkill_event_ext. This effectively reverts to the
+ * old behaviour for all userspace, unless it explicitly opts in to the
+ * rules outlined here by using the new &struct rfkill_event_ext.
+ *
+ * Userspace using &struct rfkill_event_ext must adhere to the following
+ * rules
+ *
+ * 1. accept short writes, optionally using them to detect that it's
+ *    running on an older kernel;
+ * 2. accept short reads, knowing that this means it's running on an
+ *    older kernel;
+ * 3. treat reads that are as long as requested as acceptable, not
+ *    checking against RFKILL_EVENT_SIZE_V1 or such.
  */
-#define RFKILL_EVENT_SIZE_V1	8
+#define RFKILL_EVENT_SIZE_V1	sizeof(struct rfkill_event)
 
 /* ioctl for turning off rfkill-input (if present) */
 #define RFKILL_IOC_MAGIC	'R'
--- a/net/rfkill/core.c
+++ b/net/rfkill/core.c
@@ -69,7 +69,7 @@ struct rfkill {
 
 struct rfkill_int_event {
 	struct list_head	list;
-	struct rfkill_event	ev;
+	struct rfkill_event_ext	ev;
 };
 
 struct rfkill_data {
@@ -253,7 +253,8 @@ static void rfkill_global_led_trigger_un
 }
 #endif /* CONFIG_RFKILL_LEDS */
 
-static void rfkill_fill_event(struct rfkill_event *ev, struct rfkill *rfkill,
+static void rfkill_fill_event(struct rfkill_event_ext *ev,
+			      struct rfkill *rfkill,
 			      enum rfkill_operation op)
 {
 	unsigned long flags;
@@ -1237,7 +1238,7 @@ static ssize_t rfkill_fop_write(struct f
 				size_t count, loff_t *pos)
 {
 	struct rfkill *rfkill;
-	struct rfkill_event ev;
+	struct rfkill_event_ext ev;
 	int ret;
 
 	/* we don't need the 'hard' variable but accept it */



  parent reply	other threads:[~2021-04-12  9:21 UTC|newest]

Thread overview: 214+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-12  8:38 [PATCH 5.11 000/210] 5.11.14-rc1 review Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 001/210] xfrm/compat: Cleanup WARN()s that can be user-triggered Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 002/210] ALSA: aloop: Fix initialization of controls Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 003/210] ALSA: hda/realtek: Fix speaker amp setup on Acer Aspire E1 Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 004/210] ALSA: hda/conexant: Apply quirk for another HP ZBook G5 model Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 005/210] file: fix close_range() for unshare+cloexec Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 006/210] ASoC: intel: atom: Stop advertising non working S24LE support Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 007/210] nfc: fix refcount leak in llcp_sock_bind() Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 008/210] nfc: fix refcount leak in llcp_sock_connect() Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 009/210] nfc: fix memory " Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 010/210] nfc: Avoid endless loops caused by repeated llcp_sock_connect() Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 011/210] selinux: make nslot handling in avtab more robust Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 012/210] selinux: fix cond_list corruption when changing booleans Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 013/210] selinux: fix race between old and new sidtab Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 014/210] xen/evtchn: Change irq_info lock to raw_spinlock_t Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 015/210] net: ipv6: check for validity before dereferencing cfg->fc_nlinfo.nlh Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 016/210] net: dsa: lantiq_gswip: Let GSWIP automatically set the xMII clock Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 017/210] net: dsa: lantiq_gswip: Dont use PHY auto polling Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 018/210] net: dsa: lantiq_gswip: Configure all remaining GSWIP_MII_CFG bits Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 019/210] drm/i915: Fix invalid access to ACPI _DSM objects Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 020/210] ACPI: processor: Fix build when CONFIG_ACPI_PROCESSOR=m Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 021/210] drm/radeon: Fix size overflow Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 022/210] drm/amdgpu: " Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 023/210] drm/amdgpu/smu7: fix CAC setting on TOPAZ Greg Kroah-Hartman
2021-04-12  8:38 ` Greg Kroah-Hartman [this message]
2021-04-12  8:38 ` [PATCH 5.11 025/210] cifs: escape spaces in share names Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 026/210] cifs: On cifs_reconnect, resolve the hostname again Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 027/210] IB/hfi1: Fix probe time panic when AIP is enabled with a buggy BIOS Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 028/210] LOOKUP_MOUNTPOINT: we are cleaning "jumped" flag too late Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 029/210] gcov: re-fix clang-11+ support Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 030/210] ia64: fix user_stack_pointer() for ptrace() Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 031/210] nds32: flush_dcache_page: use page_mapping_file to avoid races with swapoff Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 032/210] ocfs2: fix deadlock between setattr and dio_end_io_write Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 033/210] fs: direct-io: fix missing sdio->boundary Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 034/210] ethtool: fix incorrect datatype in set_eee ops Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 035/210] of: property: fw_devlink: do not link ".*,nr-gpios" Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 036/210] parisc: parisc-agp requires SBA IOMMU driver Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 037/210] parisc: avoid a warning on u8 cast for cmpxchg on u8 pointers Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 038/210] ARM: dts: turris-omnia: configure LED[2]/INTn pin as interrupt pin Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 039/210] batman-adv: initialize "struct batadv_tvlv_tt_vlan_data"->reserved field Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 040/210] ice: Continue probe on link/PHY errors Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 041/210] ice: Increase control queue timeout Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 042/210] ice: prevent ice_open and ice_stop during reset Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 043/210] ice: fix memory allocation call Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 044/210] ice: remove DCBNL_DEVRESET bit from PF state Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 045/210] ice: Fix for dereference of NULL pointer Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 046/210] ice: Use port number instead of PF ID for WoL Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 047/210] ice: Cleanup fltr list in case of allocation issues Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 048/210] iwlwifi: pcie: properly set LTR workarounds on 22000 devices Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 049/210] ice: fix memory leak of aRFS after resuming from suspend Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 050/210] net: hso: fix null-ptr-deref during tty device unregistration Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 051/210] libbpf: Fix bail out from ringbuf_process_ring() on error Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 052/210] bpf: Enforce that struct_ops programs be GPL-only Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 053/210] bpf: link: Refuse non-O_RDWR flags in BPF_OBJ_GET Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 054/210] ethernet/netronome/nfp: Fix a use after free in nfp_bpf_ctrl_msg_rx Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 055/210] libbpf: Ensure umem pointer is non-NULL before dereferencing Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 056/210] libbpf: Restore umem state after socket create failure Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 057/210] libbpf: Only create rx and tx XDP rings when necessary Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 058/210] bpf: Refcount task stack in bpf_get_task_stack Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 059/210] bpf, sockmap: Fix sk->prot unhash op reset Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 060/210] bpf, sockmap: Fix incorrect fwd_alloc accounting Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 061/210] net: ensure mac header is set in virtio_net_hdr_to_skb() Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 062/210] virtio_net: Do not pull payload in skb->head Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 063/210] i40e: Fix sparse warning: missing error code err Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 064/210] i40e: Fix sparse error: vsi->netdev could be null Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 065/210] i40e: Fix sparse error: uninitialized symbol ring Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 066/210] i40e: Fix sparse errors in i40e_txrx.c Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 067/210] vdpa/mlx5: Fix suspend/resume index restoration Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 068/210] net: sched: sch_teql: fix null-pointer dereference Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 069/210] net: sched: fix action overwrite reference counting Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 070/210] nl80211: fix beacon head validation Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 071/210] nl80211: fix potential leak of ACL params Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 072/210] cfg80211: check S1G beacon compat element length Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 073/210] mac80211: fix time-is-after bug in mlme Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 074/210] mac80211: fix TXQ AC confusion Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 075/210] net: hsr: Reset MAC header for Tx path Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 076/210] net-ipv6: bugfix - raw & sctp - switch to ipv6_can_nonlocal_bind() Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 077/210] net: let skb_orphan_partial wake-up waiters Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 078/210] thunderbolt: Fix a leak in tb_retimer_add() Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 079/210] thunderbolt: Fix off by one in tb_port_find_retimer() Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 080/210] usbip: add sysfs_lock to synchronize sysfs code paths Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 081/210] usbip: stub-dev " Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 082/210] usbip: vudc " Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 083/210] usbip: synchronize event handler with " Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 084/210] driver core: Fix locking bug in deferred_probe_timeout_work_func() Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 085/210] scsi: pm80xx: Fix chip initialization failure Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 086/210] scsi: target: iscsi: Fix zero tag inside a trace event Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 087/210] percpu: make pcpu_nr_empty_pop_pages per chunk type Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 088/210] i2c: turn recovery error on init to debug Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 089/210] powerpc/vdso: Make sure vdso_wrapper.o is rebuilt everytime vdso.so is rebuilt Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 090/210] powerpc/ptrace: Dont return error when getting/setting FP regs without CONFIG_PPC_FPU_REGS Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 091/210] KVM: x86/mmu: change TDP MMU yield function returns to match cond_resched Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 092/210] KVM: x86/mmu: Merge flush and non-flush tdp_mmu_iter_cond_resched Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 093/210] KVM: x86/mmu: Rename goal_gfn to next_last_level_gfn Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 094/210] KVM: x86/mmu: Ensure forward progress when yielding in TDP MMU iter Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 095/210] KVM: x86/mmu: Yield in TDU MMU iter even if no SPTES changed Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 096/210] KVM: x86/mmu: Ensure TLBs are flushed when yielding during GFN range zap Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 097/210] KVM: x86/mmu: Ensure TLBs are flushed for TDP MMU during NX zapping Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 098/210] KVM: x86/mmu: Dont allow TDP MMU to yield when recovering NX pages Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 099/210] KVM: x86/mmu: preserve pending TLB flush across calls to kvm_tdp_mmu_zap_sp Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 100/210] net: sched: fix err handler in tcf_action_init() Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 101/210] ice: Refactor DCB related variables out of the ice_port_info struct Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 102/210] ice: Recognize 860 as iSCSI port in CEE mode Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 103/210] xfrm: interface: fix ipv4 pmtu check to honor ip header df Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 104/210] xfrm: Use actual socket sk instead of skb socket for xfrm_output_resume Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 105/210] remoteproc: qcom: pil_info: avoid 64-bit division Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 106/210] regulator: bd9571mwv: Fix AVS and DVFS voltage range Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 107/210] ARM: OMAP4: Fix PMIC voltage domains for bionic Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 108/210] ARM: OMAP4: PM: update ROM return address for OSWR and OFF Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 109/210] remoteproc: pru: Fix firmware loading crashes on K3 SoCs Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 110/210] net: xfrm: Localize sequence counter per network namespace Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 111/210] esp: delete NETIF_F_SCTP_CRC bit from features for esp offload Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 112/210] ASoC: SOF: Intel: HDA: fix core status verification Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 113/210] ASoC: wm8960: Fix wrong bclk and lrclk with pll enabled for some chips Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 114/210] xfrm: Fix NULL pointer dereference on policy lookup Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 115/210] virtchnl: Fix layout of RSS structures Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 116/210] i40e: Added Asym_Pause to supported link modes Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 117/210] i40e: Fix kernel oops when i40e driver removes VFs Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 118/210] hostfs: fix memory handling in follow_link() Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 119/210] amd-xgbe: Update DMA coherency values Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 120/210] vxlan: do not modify the shared tunnel info when PMTU triggers an ICMP reply Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 121/210] geneve: " Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 122/210] sch_red: fix off-by-one checks in red_check_params() Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 123/210] drivers/net/wan/hdlc_fr: Fix a double free in pvc_xmit Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 124/210] arm64: dts: imx8mm/q: Fix pad control of SD1_DATA0 Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 125/210] xfrm: Provide private skb extensions for segmented and hw offloaded ESP packets Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 126/210] can: bcm/raw: fix msg_namelen values depending on CAN_REQUIRED_SIZE Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 127/210] can: isotp: " Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 128/210] can: uapi: can.h: mark union inside struct can_frame packed Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 129/210] mlxsw: spectrum: Fix ECN marking in tunnel decapsulation Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 130/210] ethernet: myri10ge: Fix a use after free in myri10ge_sw_tso Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 131/210] gianfar: Handle error code at MAC address change Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 132/210] net: dsa: Fix type was not set for devlink port Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 133/210] clk: qcom: camcc: Update the clock ops for the SC7180 Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 134/210] cxgb4: avoid collecting SGE_QBASE regs during traffic Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 135/210] net:tipc: Fix a double free in tipc_sk_mcast_rcv Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 136/210] ARM: dts: imx6: pbab01: Set vmmc supply for both SD interfaces Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 137/210] net/ncsi: Avoid channel_monitor hrtimer deadlock Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 138/210] net: qrtr: Fix memory leak on qrtr_tx_wait failure Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 139/210] nfp: flower: ignore duplicate merge hints from FW Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 140/210] net: phy: broadcom: Only advertise EEE for supported modes Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 141/210] I2C: JZ4780: Fix bug for Ingenic X1000 Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 142/210] ASoC: sunxi: sun4i-codec: fill ASoC card owner Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 143/210] net/mlx5e: Fix mapping of ct_label zero Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 144/210] net/mlx5: Delete auxiliary bus driver eth-rep first Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 145/210] net/mlx5e: Fix ethtool indication of connector type Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 146/210] net/mlx5: Dont request more than supported EQs Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 147/210] net/mlx5e: Guarantee room for XSK wakeup NOP on async ICOSQ Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 148/210] net/rds: Fix a use after free in rds_message_map_pages Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 149/210] xdp: fix xdp_return_frame() kernel BUG throw for page_pool memory model Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 150/210] soc/fsl: qbman: fix conflicting alignment attributes Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 151/210] i40e: fix receiving of single packets in xsk zero-copy mode Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 152/210] i40e: Fix display statistics for veb_tc Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 153/210] RDMA/rtrs-clt: Close rtrs client conn before destroying rtrs clt session files Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 154/210] drm/msm: Set drvdata to NULL when msm_drm_init() fails Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 155/210] net: udp: Add support for getsockopt(..., ..., UDP_GRO, ..., ...); Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 156/210] mptcp: forbit mcast-related sockopt on MPTCP sockets Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 157/210] mptcp: revert "mptcp: provide subflow aware release function" Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 158/210] scsi: ufs: core: Fix task management request completion timeout Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 159/210] scsi: ufs: core: Fix wrong Task Tag used in task management request UPIUs Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 160/210] drm/msm: a6xx: fix version check for the A650 SQE microcode Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 161/210] drm/msm/disp/dpu1: program 3d_merge only if block is attached Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 162/210] Revert "arm64: dts: marvell: armada-cp110: Switch to per-port SATA interrupts" Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 163/210] ARM: dts: turris-omnia: fix hardware buffer management Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 164/210] net: cls_api: Fix uninitialised struct field bo->unlocked_driver_cb Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 165/210] net: macb: restore cmp registers on resume path Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 166/210] clk: fix invalid usage of list cursor in register Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 167/210] clk: fix invalid usage of list cursor in unregister Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 168/210] workqueue: Move the position of debug_work_activate() in __queue_work() Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 169/210] s390/cpcmd: fix inline assembly register clobbering Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 170/210] perf inject: Fix repipe usage Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 171/210] openvswitch: fix send of uninitialized stack memory in ct limit reply Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 172/210] i2c: designware: Adjust bus_freq_hz when refuse high speed mode set Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 173/210] iwlwifi: fix 11ax disabled bit in the regulatory capability flags Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 174/210] can: mcp251x: fix support for half duplex SPI host controllers Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 175/210] platform/x86: intel-hid: Fix spurious wakeups caused by tablet-mode events during suspend Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 176/210] tipc: increment the tmp aead refcnt before attaching it Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 177/210] net: hns3: clear VF down state bit before request link status Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 178/210] net/mlx5: Fix HW spec violation configuring uplink Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 179/210] net/mlx5: Fix placement of log_max_flow_counter Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 180/210] net/mlx5: Fix PPLM register mapping Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 181/210] net/mlx5: Fix PBMC " Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 182/210] RDMA/cxgb4: check for ipv6 address properly while destroying listener Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 183/210] perf report: Fix wrong LBR block sorting Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 184/210] RDMA/qedr: Fix kernel panic when trying to access recv_cq Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 185/210] drm/vc4: crtc: Reduce PV fifo threshold on hvs4 Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 186/210] i40e: Fix parameters in aq_get_phy_register() Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 187/210] RDMA/addr: Be strict with gid size Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 188/210] vdpa/mlx5: should exclude header length and fcs from mtu Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 189/210] vdpa/mlx5: Fix wrong use of bit numbers Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 190/210] RAS/CEC: Correct ce_add_elem()s returned values Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 191/210] clk: socfpga: fix iomem pointer cast on 64-bit Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 192/210] lockdep: Address clang -Wformat warning printing for %hd Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 193/210] dt-bindings: net: ethernet-controller: fix typo in NVMEM Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 194/210] net: sched: bump refcount for new action in ACT replace mode Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 195/210] x86/traps: Correct exc_general_protection() and math_error() return paths Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 196/210] gpiolib: Read "gpio-line-names" from a firmware node Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 197/210] cfg80211: remove WARN_ON() in cfg80211_sme_connect Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 198/210] net: tun: set tun->dev->addr_len during TUNSETLINK processing Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 199/210] drivers: net: fix memory leak in atusb_probe Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 200/210] drivers: net: fix memory leak in peak_usb_create_dev Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 201/210] net: mac802154: Fix general protection fault Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 202/210] net: ieee802154: nl-mac: fix check on panid Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 203/210] net: ieee802154: fix nl802154 del llsec key Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 204/210] net: ieee802154: fix nl802154 del llsec dev Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 205/210] net: ieee802154: fix nl802154 add llsec key Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 206/210] net: ieee802154: fix nl802154 del llsec devkey Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 207/210] net: ieee802154: forbid monitor for set llsec params Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 208/210] net: ieee802154: forbid monitor for del llsec seclevel Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 209/210] net: ieee802154: stop dump llsec params for monitors Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 210/210] Revert "net: sched: bump refcount for new action in ACT replace mode" Greg Kroah-Hartman
2021-04-13  1:33 ` [PATCH 5.11 000/210] 5.11.14-rc1 review Shuah Khan
2021-04-13  3:41 ` Guenter Roeck
2021-04-13  4:46 ` Naresh Kamboju

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210412084016.812605974@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=johannes.berg@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sedat.dilek@gmail.com \
    --cc=stable@vger.kernel.org \
    --cc=tiwai@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).