From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Andreas Kemnade <andreas@kemnade.info>,
Arnd Bergmann <arnd@arndb.de>,
Brad Campbell <brad@fnarfbargle.com>,
Henrik Rydberg <rydberg@bitmath.org>,
Guenter Roeck <linux@roeck-us.net>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.9 168/255] hwmon: (applesmc) Re-work SMC comms
Date: Tue, 17 Nov 2020 14:05:08 +0100 [thread overview]
Message-ID: <20201117122147.112851283@linuxfoundation.org> (raw)
In-Reply-To: <20201117122138.925150709@linuxfoundation.org>
From: Brad Campbell <brad@fnarfbargle.com>
[ Upstream commit 4d64bb4ba5ecf4831448cdb2fe16d0ae91b2b40b ]
Commit fff2d0f701e6 ("hwmon: (applesmc) avoid overlong udelay()")
introduced an issue whereby communication with the SMC became
unreliable with write errors like :
[ 120.378614] applesmc: send_byte(0x00, 0x0300) fail: 0x40
[ 120.378621] applesmc: LKSB: write data fail
[ 120.512782] applesmc: send_byte(0x00, 0x0300) fail: 0x40
[ 120.512787] applesmc: LKSB: write data fail
The original code appeared to be timing sensitive and was not reliable
with the timing changes in the aforementioned commit.
This patch re-factors the SMC communication to remove the timing
dependencies and restore function with the changes previously
committed.
Tested on : MacbookAir6,2 MacBookPro11,1 iMac12,2, MacBookAir1,1,
MacBookAir3,1
Fixes: fff2d0f701e6 ("hwmon: (applesmc) avoid overlong udelay()")
Reported-by: Andreas Kemnade <andreas@kemnade.info>
Tested-by: Andreas Kemnade <andreas@kemnade.info> # MacBookAir6,2
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Brad Campbell <brad@fnarfbargle.com>
Signed-off-by: Henrik Rydberg <rydberg@bitmath.org>
Link: https://lore.kernel.org/r/194a7d71-a781-765a-d177-c962ef296b90@fnarfbargle.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/hwmon/applesmc.c | 130 ++++++++++++++++++++++++---------------
1 file changed, 82 insertions(+), 48 deletions(-)
diff --git a/drivers/hwmon/applesmc.c b/drivers/hwmon/applesmc.c
index a18887990f4a2..79b498f816fe9 100644
--- a/drivers/hwmon/applesmc.c
+++ b/drivers/hwmon/applesmc.c
@@ -32,6 +32,7 @@
#include <linux/hwmon.h>
#include <linux/workqueue.h>
#include <linux/err.h>
+#include <linux/bits.h>
/* data port used by Apple SMC */
#define APPLESMC_DATA_PORT 0x300
@@ -42,10 +43,13 @@
#define APPLESMC_MAX_DATA_LENGTH 32
-/* wait up to 128 ms for a status change. */
-#define APPLESMC_MIN_WAIT 0x0010
-#define APPLESMC_RETRY_WAIT 0x0100
-#define APPLESMC_MAX_WAIT 0x20000
+/* Apple SMC status bits */
+#define SMC_STATUS_AWAITING_DATA BIT(0) /* SMC has data waiting to be read */
+#define SMC_STATUS_IB_CLOSED BIT(1) /* Will ignore any input */
+#define SMC_STATUS_BUSY BIT(2) /* Command in progress */
+
+/* Initial wait is 8us */
+#define APPLESMC_MIN_WAIT 0x0008
#define APPLESMC_READ_CMD 0x10
#define APPLESMC_WRITE_CMD 0x11
@@ -151,65 +155,84 @@ static unsigned int key_at_index;
static struct workqueue_struct *applesmc_led_wq;
/*
- * wait_read - Wait for a byte to appear on SMC port. Callers must
- * hold applesmc_lock.
+ * Wait for specific status bits with a mask on the SMC.
+ * Used before all transactions.
+ * This does 10 fast loops of 8us then exponentially backs off for a
+ * minimum total wait of 262ms. Depending on usleep_range this could
+ * run out past 500ms.
*/
-static int wait_read(void)
+
+static int wait_status(u8 val, u8 mask)
{
- unsigned long end = jiffies + (APPLESMC_MAX_WAIT * HZ) / USEC_PER_SEC;
u8 status;
int us;
+ int i;
- for (us = APPLESMC_MIN_WAIT; us < APPLESMC_MAX_WAIT; us <<= 1) {
- usleep_range(us, us * 16);
+ us = APPLESMC_MIN_WAIT;
+ for (i = 0; i < 24 ; i++) {
status = inb(APPLESMC_CMD_PORT);
- /* read: wait for smc to settle */
- if (status & 0x01)
+ if ((status & mask) == val)
return 0;
- /* timeout: give up */
- if (time_after(jiffies, end))
- break;
+ usleep_range(us, us * 2);
+ if (i > 9)
+ us <<= 1;
}
-
- pr_warn("wait_read() fail: 0x%02x\n", status);
return -EIO;
}
-/*
- * send_byte - Write to SMC port, retrying when necessary. Callers
- * must hold applesmc_lock.
- */
+/* send_byte - Write to SMC data port. Callers must hold applesmc_lock. */
+
static int send_byte(u8 cmd, u16 port)
{
- u8 status;
- int us;
- unsigned long end = jiffies + (APPLESMC_MAX_WAIT * HZ) / USEC_PER_SEC;
+ int status;
+
+ status = wait_status(0, SMC_STATUS_IB_CLOSED);
+ if (status)
+ return status;
+ /*
+ * This needs to be a separate read looking for bit 0x04
+ * after bit 0x02 falls. If consolidated with the wait above
+ * this extra read may not happen if status returns both
+ * simultaneously and this would appear to be required.
+ */
+ status = wait_status(SMC_STATUS_BUSY, SMC_STATUS_BUSY);
+ if (status)
+ return status;
outb(cmd, port);
- for (us = APPLESMC_MIN_WAIT; us < APPLESMC_MAX_WAIT; us <<= 1) {
- usleep_range(us, us * 16);
- status = inb(APPLESMC_CMD_PORT);
- /* write: wait for smc to settle */
- if (status & 0x02)
- continue;
- /* ready: cmd accepted, return */
- if (status & 0x04)
- return 0;
- /* timeout: give up */
- if (time_after(jiffies, end))
- break;
- /* busy: long wait and resend */
- udelay(APPLESMC_RETRY_WAIT);
- outb(cmd, port);
- }
-
- pr_warn("send_byte(0x%02x, 0x%04x) fail: 0x%02x\n", cmd, port, status);
- return -EIO;
+ return 0;
}
+/* send_command - Write a command to the SMC. Callers must hold applesmc_lock. */
+
static int send_command(u8 cmd)
{
- return send_byte(cmd, APPLESMC_CMD_PORT);
+ int ret;
+
+ ret = wait_status(0, SMC_STATUS_IB_CLOSED);
+ if (ret)
+ return ret;
+ outb(cmd, APPLESMC_CMD_PORT);
+ return 0;
+}
+
+/*
+ * Based on logic from the Apple driver. This is issued before any interaction
+ * If busy is stuck high, issue a read command to reset the SMC state machine.
+ * If busy is stuck high after the command then the SMC is jammed.
+ */
+
+static int smc_sane(void)
+{
+ int ret;
+
+ ret = wait_status(0, SMC_STATUS_BUSY);
+ if (!ret)
+ return ret;
+ ret = send_command(APPLESMC_READ_CMD);
+ if (ret)
+ return ret;
+ return wait_status(0, SMC_STATUS_BUSY);
}
static int send_argument(const char *key)
@@ -226,6 +249,11 @@ static int read_smc(u8 cmd, const char *key, u8 *buffer, u8 len)
{
u8 status, data = 0;
int i;
+ int ret;
+
+ ret = smc_sane();
+ if (ret)
+ return ret;
if (send_command(cmd) || send_argument(key)) {
pr_warn("%.4s: read arg fail\n", key);
@@ -239,7 +267,8 @@ static int read_smc(u8 cmd, const char *key, u8 *buffer, u8 len)
}
for (i = 0; i < len; i++) {
- if (wait_read()) {
+ if (wait_status(SMC_STATUS_AWAITING_DATA | SMC_STATUS_BUSY,
+ SMC_STATUS_AWAITING_DATA | SMC_STATUS_BUSY)) {
pr_warn("%.4s: read data[%d] fail\n", key, i);
return -EIO;
}
@@ -250,19 +279,24 @@ static int read_smc(u8 cmd, const char *key, u8 *buffer, u8 len)
for (i = 0; i < 16; i++) {
udelay(APPLESMC_MIN_WAIT);
status = inb(APPLESMC_CMD_PORT);
- if (!(status & 0x01))
+ if (!(status & SMC_STATUS_AWAITING_DATA))
break;
data = inb(APPLESMC_DATA_PORT);
}
if (i)
pr_warn("flushed %d bytes, last value is: %d\n", i, data);
- return 0;
+ return wait_status(0, SMC_STATUS_BUSY);
}
static int write_smc(u8 cmd, const char *key, const u8 *buffer, u8 len)
{
int i;
+ int ret;
+
+ ret = smc_sane();
+ if (ret)
+ return ret;
if (send_command(cmd) || send_argument(key)) {
pr_warn("%s: write arg fail\n", key);
@@ -281,7 +315,7 @@ static int write_smc(u8 cmd, const char *key, const u8 *buffer, u8 len)
}
}
- return 0;
+ return wait_status(0, SMC_STATUS_BUSY);
}
static int read_register_count(unsigned int *count)
--
2.27.0
next prev parent reply other threads:[~2020-11-17 13:38 UTC|newest]
Thread overview: 266+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-17 13:02 [PATCH 5.9 000/255] 5.9.9-rc1 review Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 001/255] drm/i915: Hold onto an explicit ref to i915_vma_work.pinned Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 002/255] drm/i915/gem: Flush coherency domains on first set-domain-ioctl Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 003/255] mm: memcg: link page counters to root if use_hierarchy is false Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 004/255] nbd: dont update block size after device is started Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 005/255] KVM: arm64: Force PTE mapping on fault resulting in a device mapping Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 006/255] xfrm: interface: fix the priorities for ipip and ipv6 tunnels Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 007/255] ASoC: Intel: kbl_rt5663_max98927: Fix kabylake_ssp_fixup function Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 008/255] genirq: Let GENERIC_IRQ_IPI select IRQ_DOMAIN_HIERARCHY Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 009/255] hv_balloon: disable warning when floor reached Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 010/255] net: xfrm: fix a race condition during allocing spi Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 011/255] ASoC: codecs: wsa881x: add missing stream rates and format Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 012/255] spi: imx: fix runtime pm support for !CONFIG_PM Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 013/255] irqchip/sifive-plic: Fix broken irq_set_affinity() callback Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 014/255] kunit: Fix kunit.py --raw_output option Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 015/255] kunit: Dont fail test suites if one of them is empty Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 016/255] usb: gadget: fsl: fix null pointer checking Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 017/255] selftests: filter kselftest headers from command in lib.mk Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 018/255] ASoC: codecs: wcd934x: Set digital gain range correctly Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 019/255] ASoC: codecs: wcd9335: " Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 020/255] mtd: spi-nor: Fix address width on flash chips > 16MB Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 021/255] xfs: set xefi_discard when creating a deferred agfl free log intent item Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 022/255] mac80211: dont require VHT elements for HE on 2.4 GHz Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 023/255] netfilter: nftables: fix netlink report logic in flowtable and genid Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 024/255] netfilter: use actual socket sk rather than skb sk when routing harder Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 025/255] netfilter: nf_tables: missing validation from the abort path Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 026/255] PCI: Always enable ACS even if no ACS Capability Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 027/255] netfilter: ipset: Update byte and packet counters regardless of whether they match Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 028/255] irqchip/sifive-plic: Fix chip_data access within a hierarchy Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 029/255] powerpc/eeh_cache: Fix a possible debugfs deadlock Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 030/255] drm/vc4: bo: Add a managed action to cleanup the cache Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 031/255] IB/srpt: Fix memory leak in srpt_add_one Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 032/255] mm: memcontrol: correct the NR_ANON_THPS counter of hierarchical memcg Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 033/255] drm/panfrost: rename error labels in device_init Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 034/255] drm/panfrost: move devfreq_init()/fini() in device Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 035/255] drm/panfrost: Fix module unload Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 036/255] perf trace: Fix segfault when trying to trace events by cgroup Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 037/255] perf tools: Add missing swap for ino_generation Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 038/255] perf tools: Add missing swap for cgroup events Greg Kroah-Hartman
2020-11-17 13:02 ` [PATCH 5.9 039/255] ALSA: hda: prevent undefined shift in snd_hdac_ext_bus_get_link() Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 040/255] iommu/vt-d: Fix sid not set issue in intel_svm_bind_gpasid() Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 041/255] iommu/vt-d: Fix a bug for PDP check in prq_event_thread Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 042/255] afs: Fix warning due to unadvanced marshalling pointer Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 043/255] afs: Fix incorrect freeing of the ACL passed to the YFS ACL store op Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 044/255] vfio/pci: Implement ioeventfd thread handler for contended memory lock Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 045/255] can: rx-offload: dont call kfree_skb() from IRQ context Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 046/255] can: dev: can_get_echo_skb(): prevent call to kfree_skb() in hard " Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 047/255] can: dev: __can_get_echo_skb(): fix real payload length return value for RTR frames Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 048/255] can: can_create_echo_skb(): fix echo skb generation: always use skb_clone() Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 049/255] can: j1939: swap addr and pgn in the send example Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 050/255] can: j1939: j1939_sk_bind(): return failure if netdev is down Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 051/255] can: ti_hecc: ti_hecc_probe(): add missed clk_disable_unprepare() in error path Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 052/255] can: xilinx_can: handle failure cases of pm_runtime_get_sync Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 053/255] can: peak_usb: add range checking in decode operations Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 054/255] can: peak_usb: peak_usb_get_ts_time(): fix timestamp wrapping Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 055/255] can: peak_canfd: pucan_handle_can_rx(): fix echo management when loopback is on Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 056/255] can: flexcan: remove FLEXCAN_QUIRK_DISABLE_MECR quirk for LS1021A Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 057/255] can: flexcan: flexcan_remove(): disable wakeup completely Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 058/255] xfs: flush new eof page on truncate to avoid post-eof corruption Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 059/255] xfs: fix missing CoW blocks writeback conversion retry Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 060/255] xfs: fix scrub flagging rtinherit even if there is no rt device Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 061/255] io_uring: ensure consistent view of original task ->mm from SQPOLL Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 062/255] spi: fsl-dspi: fix wrong pointer in suspend/resume Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 063/255] PCI: mvebu: Fix duplicate resource requests Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 064/255] ceph: check session state after bumping session->s_seq Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 065/255] selftests: core: use SKIP instead of XFAIL in close_range_test.c Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 066/255] selftests: clone3: use SKIP instead of XFAIL Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 067/255] selftests: binderfs: " Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 068/255] x86/speculation: Allow IBPB to be conditionally enabled on CPUs with always-on STIBP Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 069/255] kbuild: explicitly specify the build id style Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 070/255] RISC-V: Fix the VDSO symbol generaton for binutils-2.35+ Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 071/255] USB: apple-mfi-fastcharge: fix reference leak in apple_mfi_fc_set_property Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 072/255] tpm: efi: Dont create binary_bios_measurements file for an empty log Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 073/255] KVM: arm64: ARM_SMCCC_ARCH_WORKAROUND_1 doesnt return SMCCC_RET_NOT_REQUIRED Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 074/255] ath9k_htc: Use appropriate rs_datalen type Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 075/255] scsi: ufs: Fix missing brace warning for old compilers Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 076/255] ASoC: mediatek: mt8183-da7219: fix DAPM paths for rt1015 Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 077/255] ASoC: qcom: sdm845: set driver name correctly Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 078/255] ASoC: cs42l51: manage mclk shutdown delay Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 079/255] ASoC: SOF: loader: handle all SOF_IPC_EXT types Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 080/255] usb: dwc3: pci: add support for the Intel Alder Lake-S Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 081/255] opp: Reduce the size of critical section in _opp_table_kref_release() Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 082/255] usb: gadget: goku_udc: fix potential crashes in probe Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 083/255] usb: raw-gadget: fix memory leak in gadget_setup Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 084/255] selftests/ftrace: check for do_sys_openat2 in user-memory test Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 085/255] selftests: pidfd: fix compilation errors due to wait.h Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 086/255] ALSA: hda: Separate runtime and system suspend Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 087/255] ALSA: hda: Reinstate runtime_allow() for all hda controllers Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 088/255] x86/boot/compressed/64: Introduce sev_status Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 089/255] gfs2: Free rd_bits later in gfs2_clear_rgrpd to fix use-after-free Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 090/255] gfs2: Add missing truncate_inode_pages_final for sd_aspace Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 091/255] gfs2: check for live vs. read-only file system in gfs2_fitrim Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 092/255] scsi: hpsa: Fix memory leak in hpsa_init_one() Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 093/255] drm/amdgpu: perform srbm soft reset always on SDMA resume Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 094/255] drm/amd/pm: correct the baco reset sequence for CI ASICs Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 095/255] drm/amd/pm: perform SMC reset on suspend/hibernation Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 096/255] drm/amd/pm: do not use ixFEATURE_STATUS for checking smc running Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 097/255] mac80211: fix use of skb payload instead of header Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 098/255] cfg80211: initialize wdev data earlier Greg Kroah-Hartman
2020-11-17 13:03 ` [PATCH 5.9 099/255] mac80211: always wind down STA state Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 100/255] cfg80211: regulatory: Fix inconsistent format argument Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 101/255] wireguard: selftests: check that route_me_harder packets use the right sk Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 102/255] tracing: Fix the checking of stackidx in __ftrace_trace_stack Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 103/255] Revert "nvme-pci: remove last_sq_tail" Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 104/255] ARC: [plat-hsdk] Remap CCMs super early in asm boot trampoline Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 105/255] scsi: scsi_dh_alua: Avoid crash during alua_bus_detach() Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 106/255] scsi: mpt3sas: Fix timeouts observed while reenabling IRQ Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 107/255] nvme: introduce nvme_sync_io_queues Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 108/255] nvme-rdma: avoid race between time out and tear down Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 109/255] nvme-tcp: " Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 110/255] nvme-rdma: avoid repeated request completion Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 111/255] nvme-tcp: " Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 112/255] iommu/amd: Increase interrupt remapping table limit to 512 entries Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 113/255] s390/smp: move rcu_cpu_starting() earlier Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 114/255] vfio: platform: fix reference leak in vfio_platform_open Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 115/255] vfio/pci: Bypass IGD init in case of -ENODEV Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 116/255] i2c: mediatek: move dma reset before i2c reset Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 117/255] amd/amdgpu: Disable VCN DPG mode for Picasso Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 118/255] iomap: clean up writeback state logic on writepage error Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 119/255] selftests: proc: fix warning: _GNU_SOURCE redefined Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 120/255] arm64: kexec_file: try more regions if loading segments fails Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 121/255] riscv: Set text_offset correctly for M-Mode Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 122/255] i2c: sh_mobile: implement atomic transfers Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 123/255] i2c: designware: call i2c_dw_read_clear_intrbits_slave() once Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 124/255] i2c: designware: slave should do WRITE_REQUESTED before WRITE_RECEIVED Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 125/255] tpm_tis: Disable interrupts on ThinkPad T490s Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 126/255] spi: bcm2835: remove use of uninitialized gpio flags variable Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 127/255] mfd: sprd: Add wakeup capability for PMIC IRQ Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 128/255] pinctrl: intel: Fix 2 kOhm bias which is 833 Ohm Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 129/255] pinctrl: intel: Set default bias in case no particular value given Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 130/255] gpio: aspeed: fix ast2600 bank properties Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 131/255] ARM: 9019/1: kprobes: Avoid fortify_panic() when copying optprobe template Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 132/255] bpf: Dont rely on GCC __attribute__((optimize)) to disable GCSE Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 133/255] libbpf, hashmap: Fix undefined behavior in hash_bits Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 134/255] pinctrl: mcp23s08: Use full chunk of memory for regmap configuration Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 135/255] pinctrl: aspeed: Fix GPI only function problem Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 136/255] net/mlx5e: Fix modify header actions memory leak Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 137/255] net/mlx5e: Protect encap route dev from concurrent release Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 138/255] net/mlx5e: Use spin_lock_bh for async_icosq_lock Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 139/255] net/mlx5: Fix deletion of duplicate rules Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 140/255] net/mlx5: E-switch, Avoid extack error log for disabled vport Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 141/255] net/mlx5e: Fix VXLAN synchronization after function reload Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 142/255] net/mlx5e: Fix incorrect access of RCU-protected xdp_prog Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 143/255] SUNRPC: Fix general protection fault in trace_rpc_xdr_overflow() Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 144/255] NFSD: Fix use-after-free warning when doing inter-server copy Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 145/255] NFSD: fix missing refcount in nfsd4_copy by nfsd4_do_async_copy Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 146/255] tools/bpftool: Fix attaching flow dissector Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 147/255] bpf: Zero-fill re-used per-cpu map element Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 148/255] r8169: fix potential skb double free in an error path Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 149/255] r8169: disable hw csum for short packets on all chip versions Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 150/255] pinctrl: qcom: Move clearing pending IRQ to .irq_request_resources callback Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 151/255] pinctrl: qcom: sm8250: Specify PDC map Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 152/255] nbd: fix a block_device refcount leak in nbd_release Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 153/255] selftest: fix flower terse dump tests Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 154/255] i40e: Fix MAC address setting for a VF via Host/VM Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 155/255] igc: Fix returning wrong statistics Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 156/255] lan743x: correctly handle chips with internal PHY Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 157/255] net: phy: realtek: support paged operations on RTL8201CP Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 158/255] xfs: fix flags argument to rmap lookup when converting shared file rmaps Greg Kroah-Hartman
2020-11-17 13:04 ` [PATCH 5.9 159/255] xfs: set the unwritten bit in rmap lookup flags in xchk_bmap_get_rmapextents Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 160/255] xfs: fix rmap key and record comparison functions Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 161/255] xfs: fix brainos in the refcount scrubbers rmap fragment processor Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 162/255] lan743x: fix "BUG: invalid wait context" when setting rx mode Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 163/255] xfs: fix a missing unlock on error in xfs_fs_map_blocks Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 164/255] of/address: Fix of_node memory leak in of_dma_is_coherent Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 165/255] ch_ktls: Update cheksum information Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 166/255] ch_ktls: tcb update fails sometimes Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 167/255] cosa: Add missing kfree in error path of cosa_write Greg Kroah-Hartman
2020-11-17 13:05 ` Greg Kroah-Hartman [this message]
2020-11-17 13:05 ` [PATCH 5.9 169/255] NFS: Fix listxattr receive buffer size Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 170/255] vrf: Fix fast path output packet handling with async Netfilter rules Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 171/255] lan743x: fix use of uninitialized variable Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 172/255] arm64/mm: Validate hotplug range before creating linear mapping Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 173/255] kernel/watchdog: fix watchdog_allowed_mask not used warning Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 174/255] mm: memcontrol: fix missing wakeup polling thread Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 175/255] afs: Fix afs_write_end() when called with copied == 0 [ver #3] Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 176/255] perf: Fix get_recursion_context() Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 177/255] nvme: factor out a nvme_configure_metadata helper Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 178/255] nvme: freeze the queue over ->lba_shift updates Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 179/255] nvme: fix incorrect behavior when BLKROSET is called by the user Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 180/255] perf: Simplify group_sched_in() Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 181/255] perf: Fix event multiplexing for exclusive groups Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 182/255] firmware: xilinx: fix out-of-bounds access Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 183/255] erofs: fix setting up pcluster for temporary pages Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 184/255] erofs: derive atime instead of leaving it empty Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 185/255] ext4: correctly report "not supported" for {usr,grp}jquota when !CONFIG_QUOTA Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 186/255] ext4: unlock xattr_sem properly in ext4_inline_data_truncate() Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 187/255] btrfs: fix potential overflow in cluster_pages_for_defrag on 32bit arch Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 188/255] btrfs: ref-verify: fix memory leak in btrfs_ref_tree_mod Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 189/255] btrfs: fix min reserved size calculation in merge_reloc_root Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 190/255] btrfs: dev-replace: fail mount if we dont have replace item with target device Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 191/255] KVM: arm64: Dont hide ID registers from userspace Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 192/255] speakup: Fix var_id_t values and thus keymap Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 193/255] speakup ttyio: Do not schedule() in ttyio_in_nowait Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 194/255] speakup: Fix clearing selection in safe context Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 195/255] thunderbolt: Fix memory leak if ida_simple_get() fails in enumerate_services() Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 196/255] thunderbolt: Add the missed ida_simple_remove() in ring_request_msix() Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 197/255] block: add a return value to set_capacity_revalidate_and_notify Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 198/255] loop: Fix occasional uevent drop Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 199/255] uio: Fix use-after-free in uio_unregister_device() Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 200/255] Revert "usb: musb: convert to devm_platform_ioremap_resource_byname" Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 201/255] usb: cdc-acm: Add DISABLE_ECHO for Renesas USB Download mode Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 202/255] usb: typec: ucsi: Report power supply changes Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 203/255] xhci: hisilicon: fix refercence leak in xhci_histb_probe Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 204/255] virtio: virtio_console: fix DMA memory allocation for rproc serial Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 205/255] mei: protect mei_cl_mtu from null dereference Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 206/255] futex: Dont enable IRQs unconditionally in put_pi_state() Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 207/255] jbd2: fix up sparse warnings in checkpoint code Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 208/255] bootconfig: Extend the magic check range to the preceding 3 bytes Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 209/255] mm/compaction: count pages and stop correctly during page isolation Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 210/255] mm/compaction: stop isolation if too many pages are isolated and we have pages to migrate Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 211/255] mm/slub: fix panic in slab_alloc_node() Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 212/255] mm/vmscan: fix NR_ISOLATED_FILE corruption on 64-bit Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 213/255] mm/gup: use unpin_user_pages() in __gup_longterm_locked() Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 214/255] Revert "kernel/reboot.c: convert simple_strtoul to kstrtoint" Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 215/255] reboot: fix overflow parsing reboot cpu number Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 216/255] hugetlbfs: fix anon huge page migration race Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 217/255] ocfs2: initialize ip_next_orphan Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 218/255] hwmon: (amd_energy) modify the visibility of the counters Greg Kroah-Hartman
2020-11-17 13:05 ` [PATCH 5.9 219/255] selinux: Fix error return code in sel_ib_pkey_sid_slow() Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 220/255] io_uring: round-up cq size before comparing with rounded sq size Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 221/255] gpio: sifive: Fix SiFive gpio probe Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 222/255] gpio: pcie-idio-24: Fix irq mask when masking Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 223/255] gpio: pcie-idio-24: Fix IRQ Enable Register value Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 224/255] gpio: pcie-idio-24: Enable PEX8311 interrupts Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 225/255] mmc: sdhci-of-esdhc: Handle pulse width detection erratum for more SoCs Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 226/255] mmc: renesas_sdhi_core: Add missing tmio_mmc_host_free() at remove Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 227/255] dont dump the threads that had been already exiting when zapped Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 228/255] drm/amd/display: Add missing pflip irq Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 229/255] drm/i915: Correctly set SFC capability for video engines Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 230/255] drm/gma500: Fix out-of-bounds access to struct drm_device.vblank[] Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 231/255] NFSv4.2: fix failure to unregister shrinker Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 232/255] pinctrl: amd: use higher precision for 512 RtcClk Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 233/255] pinctrl: amd: fix incorrect way to disable debounce filter Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 234/255] swiotlb: fix "x86: Dont panic if can not alloc buffer for swiotlb" Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 235/255] cpufreq: Introduce governor flags Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 236/255] cpufreq: Introduce CPUFREQ_GOV_STRICT_TARGET Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 237/255] cpufreq: Add strict_target to struct cpufreq_policy Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 238/255] cpufreq: intel_pstate: Take CPUFREQ_GOV_STRICT_TARGET into account Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 239/255] ethtool: netlink: add missing netdev_features_change() call Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 240/255] IPv6: Set SIT tunnel hard_header_len to zero Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 241/255] net/af_iucv: fix null pointer dereference on shutdown Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 242/255] net: udp: fix IP header access and skb lookup on Fast/frag0 UDP GRO Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 243/255] net: udp: fix UDP header access " Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 244/255] net: Update window_clamp if SOCK_RCVBUF is set Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 245/255] net/x25: Fix null-ptr-deref in x25_connect Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 246/255] tipc: fix memory leak in tipc_topsrv_start() Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 247/255] devlink: Avoid overwriting port attributes of registered port Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 248/255] mptcp: provide rmem[0] limit Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 249/255] tunnels: Fix off-by-one in lower MTU bounds for ICMP/ICMPv6 replies Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 250/255] powerpc/603: Always fault when _PAGE_ACCESSED is not set Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 251/255] null_blk: Fix scheduling in atomic with zoned mode Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 252/255] perf scripting python: Avoid declaring function pointers with a visibility attribute Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 253/255] coresight: etm: perf: Sink selection using sysfs is deprecated Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 254/255] coresight: Fix uninitialised pointer bug in etm_setup_aux() Greg Kroah-Hartman
2020-11-17 13:06 ` [PATCH 5.9 255/255] Convert trailing spaces and periods in path components Greg Kroah-Hartman
2020-11-17 19:09 ` [PATCH 5.9 000/255] 5.9.9-rc1 review Jon Hunter
2020-11-19 12:14 ` Greg Kroah-Hartman
2020-11-17 19:54 ` Jeffrin Jose T
2020-11-17 22:04 ` Shuah Khan
2020-11-19 12:14 ` Greg Kroah-Hartman
2020-11-18 5:33 ` Naresh Kamboju
2020-11-19 12:13 ` Greg Kroah-Hartman
2020-11-18 15:25 ` Guenter Roeck
2020-11-19 12:13 ` Greg Kroah-Hartman
2020-11-18 15:31 ` Guenter Roeck
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=20201117122147.112851283@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=andreas@kemnade.info \
--cc=arnd@arndb.de \
--cc=brad@fnarfbargle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=rydberg@bitmath.org \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/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).