From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Mariusz Bialonczyk <manio@skyboo.net>,
Oliver Neukum <oneukum@suse.com>
Subject: [PATCH 4.14 100/173] Revert "cdc-acm: implement put_char() and flush_chars()"
Date: Mon, 24 Sep 2018 13:52:14 +0200 [thread overview]
Message-ID: <20180924113123.428471393@linuxfoundation.org> (raw)
In-Reply-To: <20180924113114.334025954@linuxfoundation.org>
4.14-stable review patch. If anyone has any objections, please let me know.
------------------
From: Oliver Neukum <oneukum@suse.com>
commit df3aa13c7bbb307e172c37f193f9a7aa058d4739 upstream.
This reverts commit a81cf9799ad7299b03a4dff020d9685f9ac5f3e0.
The patch causes a regression, which I cannot find the reason for.
So let's revert for now, as a revert hurts only performance.
Original report:
I was trying to resolve the problem with Oliver but we don't get any conclusion
for 5 months, so I am now sending this to mail list and cdc_acm authors.
I am using simple request-response protocol to obtain the boiller parameters
in constant intervals.
A simple one transaction is:
1. opening the /dev/ttyACM0
2. sending the following 10-bytes request to the device:
unsigned char req[] = {0x02, 0xfe, 0x01, 0x05, 0x08, 0x02, 0x01, 0x69, 0xab, 0x03};
3. reading response (frame of 74 bytes length).
4. closing the descriptor
I am doing this transaction with 5 seconds intervals.
Before the bad commit everything was working correctly: I've got a requests and
a responses in a timely manner.
After the bad commit more time I am using the kernel module, more problems I have.
The graph [2] is showing the problem.
As you can see after module load all seems fine but after about 30 minutes I've got
a plenty of EAGAINs when doing read()'s and trying to read back the data.
When I rmmod and insmod the cdc_acm module again, then the situation is starting
over again: running ok shortly after load, and more time it is running, more EAGAINs
I have when calling read().
As a bonus I can see the problem on the device itself:
The device is configured as you can see here on this screen [3].
It has two transmision LEDs: TX and RX. Blink duration is set for 100ms.
This is a recording before the bad commit when all is working fine: [4]
And this is with the bad commit: [5]
As you can see the TX led is blinking wrongly long (indicating transmission?)
and I have problems doing read() calls (EAGAIN).
Reported-by: Mariusz Bialonczyk <manio@skyboo.net>
Signed-off-by: Oliver Neukum <oneukum@suse.com>
Fixes: a81cf9799ad7 ("cdc-acm: implement put_char() and flush_chars()")
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/usb/class/cdc-acm.c | 73 --------------------------------------------
drivers/usb/class/cdc-acm.h | 1
2 files changed, 74 deletions(-)
--- a/drivers/usb/class/cdc-acm.c
+++ b/drivers/usb/class/cdc-acm.c
@@ -792,20 +792,9 @@ static int acm_tty_write(struct tty_stru
}
if (acm->susp_count) {
- if (acm->putbuffer) {
- /* now to preserve order */
- usb_anchor_urb(acm->putbuffer->urb, &acm->delayed);
- acm->putbuffer = NULL;
- }
usb_anchor_urb(wb->urb, &acm->delayed);
spin_unlock_irqrestore(&acm->write_lock, flags);
return count;
- } else {
- if (acm->putbuffer) {
- /* at this point there is no good way to handle errors */
- acm_start_wb(acm, acm->putbuffer);
- acm->putbuffer = NULL;
- }
}
stat = acm_start_wb(acm, wb);
@@ -816,66 +805,6 @@ static int acm_tty_write(struct tty_stru
return count;
}
-static void acm_tty_flush_chars(struct tty_struct *tty)
-{
- struct acm *acm = tty->driver_data;
- struct acm_wb *cur;
- int err;
- unsigned long flags;
-
- spin_lock_irqsave(&acm->write_lock, flags);
-
- cur = acm->putbuffer;
- if (!cur) /* nothing to do */
- goto out;
-
- acm->putbuffer = NULL;
- err = usb_autopm_get_interface_async(acm->control);
- if (err < 0) {
- cur->use = 0;
- acm->putbuffer = cur;
- goto out;
- }
-
- if (acm->susp_count)
- usb_anchor_urb(cur->urb, &acm->delayed);
- else
- acm_start_wb(acm, cur);
-out:
- spin_unlock_irqrestore(&acm->write_lock, flags);
- return;
-}
-
-static int acm_tty_put_char(struct tty_struct *tty, unsigned char ch)
-{
- struct acm *acm = tty->driver_data;
- struct acm_wb *cur;
- int wbn;
- unsigned long flags;
-
-overflow:
- cur = acm->putbuffer;
- if (!cur) {
- spin_lock_irqsave(&acm->write_lock, flags);
- wbn = acm_wb_alloc(acm);
- if (wbn >= 0) {
- cur = &acm->wb[wbn];
- acm->putbuffer = cur;
- }
- spin_unlock_irqrestore(&acm->write_lock, flags);
- if (!cur)
- return 0;
- }
-
- if (cur->len == acm->writesize) {
- acm_tty_flush_chars(tty);
- goto overflow;
- }
-
- cur->buf[cur->len++] = ch;
- return 1;
-}
-
static int acm_tty_write_room(struct tty_struct *tty)
{
struct acm *acm = tty->driver_data;
@@ -2000,8 +1929,6 @@ static const struct tty_operations acm_o
.cleanup = acm_tty_cleanup,
.hangup = acm_tty_hangup,
.write = acm_tty_write,
- .put_char = acm_tty_put_char,
- .flush_chars = acm_tty_flush_chars,
.write_room = acm_tty_write_room,
.ioctl = acm_tty_ioctl,
.throttle = acm_tty_throttle,
--- a/drivers/usb/class/cdc-acm.h
+++ b/drivers/usb/class/cdc-acm.h
@@ -96,7 +96,6 @@ struct acm {
unsigned long read_urbs_free;
struct urb *read_urbs[ACM_NR];
struct acm_rb read_buffers[ACM_NR];
- struct acm_wb *putbuffer; /* for acm_tty_put_char() */
int rx_buflimit;
spinlock_t read_lock;
u8 *notification_buffer; /* to reassemble fragmented notifications */
next prev parent reply other threads:[~2018-09-24 18:26 UTC|newest]
Thread overview: 186+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-24 11:50 [PATCH 4.14 000/173] 4.14.72-stable review Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 001/173] be2net: Fix memory leak in be_cmd_get_profile_config() Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 002/173] net/mlx5: Fix use-after-free in self-healing flow Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 003/173] net: qca_spi: Fix race condition in spi transfers Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 004/173] rds: fix two RCU related problems Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 005/173] net/mlx5: Check for error in mlx5_attach_interface Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 006/173] net/mlx5: Fix debugfs cleanup in the device init/remove flow Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 007/173] net/mlx5: E-Switch, Fix memory leak when creating switchdev mode FDB tables Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 008/173] net/tls: Set count of SG entries if sk_alloc_sg returns -ENOSPC Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 009/173] erspan: fix error handling for erspan tunnel Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 010/173] erspan: return PACKET_REJECT when the appropriate tunnel is not found Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 011/173] tcp: really ignore MSG_ZEROCOPY if no SO_ZEROCOPY Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 012/173] hv/netvsc: Fix NULL dereference at single queue mode fallback Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 013/173] usb: dwc3: change stream event enable bit back to 13 Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 014/173] iommu/arm-smmu-v3: sync the OVACKFLG to PRIQ consumer register Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 015/173] iommu/io-pgtable-arm-v7s: Abort allocation when table address overflows the PTE Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 016/173] ALSA: msnd: Fix the default sample sizes Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 017/173] ALSA: usb-audio: Fix multiple definitions in AU0828_DEVICE() macro Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 018/173] xfrm: fix passing zero to ERR_PTR() warning Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 019/173] amd-xgbe: use dma_mapping_error to check map errors Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 020/173] gfs2: Special-case rindex for gfs2_grow Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 021/173] clk: imx6ul: fix missing of_node_put() Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 022/173] clk: core: Potentially free connection id Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 023/173] clk: clk-fixed-factor: Clear OF_POPULATED flag in case of failure Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 024/173] kbuild: add .DELETE_ON_ERROR special target Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 025/173] media: tw686x: Fix oops on buffer alloc failure Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 026/173] dmaengine: pl330: fix irq race with terminate_all Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 027/173] MIPS: ath79: fix system restart Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 028/173] media: videobuf2-core: check for q->error in vb2_core_qbuf() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 029/173] IB/rxe: Drop QP0 silently Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 030/173] block: allow max_discard_segments to be stacked Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 031/173] IB/ipoib: Fix error return code in ipoib_dev_init() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 032/173] mtd/maps: fix solutionengine.c printk format warnings Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 033/173] media: ov5645: Supported external clock is 24MHz Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 034/173] perf test: Fix subtest number when showing results Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 035/173] gfs2: Dont reject a supposedly full bitmap if we have blocks reserved Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 036/173] perf tools: Synthesize GROUP_DESC feature in pipe mode Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 037/173] fbdev: omapfb: off by one in omapfb_register_client() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 038/173] perf tools: Fix struct comm_str removal crash Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 039/173] video: goldfishfb: fix memory leak on driver remove Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 040/173] fbdev/via: fix defined but not used warning Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 041/173] perf powerpc: Fix callchain ip filtering when return address is in a register Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 042/173] video: fbdev: pxafb: clear allocated memory for video modes Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 043/173] fbdev: Distinguish between interlaced and progressive modes Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 044/173] ARM: exynos: Clear global variable on init error path Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 045/173] perf powerpc: Fix callchain ip filtering Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 046/173] nvme-rdma: unquiesce queues when deleting the controller Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 047/173] KVM: arm/arm64: vgic: Fix possible spectre-v1 write in vgic_mmio_write_apr() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 048/173] powerpc/powernv: opal_put_chars partial write fix Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 049/173] staging: bcm2835-camera: fix timeout handling in wait_for_completion_timeout Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 050/173] staging: bcm2835-camera: handle wait_for_completion_timeout return properly Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 051/173] ASoC: rt5514: Fix the issue of the delay volume applied Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 052/173] MIPS: jz4740: Bump zload address Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 053/173] mac80211: restrict delayed tailroom needed decrement Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 054/173] Smack: Fix handling of IPv4 traffic received by PF_INET6 sockets Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 055/173] wan/fsl_ucc_hdlc: use IS_ERR_VALUE() to check return value of qe_muram_alloc Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 056/173] arm64: fix possible spectre-v1 write in ptrace_hbp_set_event() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 057/173] reset: imx7: Fix always writing bits as 0 Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 058/173] efi/arm: preserve early mapping of UEFI memory map longer for BGRT Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 059/173] nfp: avoid buffer leak when FW communication fails Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 060/173] xen-netfront: fix queue name setting Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 061/173] arm64: dts: qcom: db410c: Fix Bluetooth LED trigger Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 062/173] ARM: dts: qcom: msm8974-hammerhead: increase load on l20 for sdhci Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 063/173] s390/qeth: fix race in used-buffer accounting Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 064/173] s390/qeth: reset layer2 attribute on layer switch Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 065/173] platform/x86: toshiba_acpi: Fix defined but not used build warnings Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 066/173] KVM: arm/arm64: Fix vgic init race Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 067/173] drivers/base: stop new probing during shutdown Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 068/173] i2c: aspeed: Fix initial values of master and slave state Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 069/173] dmaengine: mv_xor_v2: kill the tasklets upon exit Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 070/173] crypto: sharah - Unregister correct algorithms for SAHARA 3 Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 071/173] x86/pti: Check the return value of pti_user_pagetable_walk_p4d() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 072/173] x86/pti: Check the return value of pti_user_pagetable_walk_pmd() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 073/173] x86/mm/pti: Add an overflow check to pti_clone_pmds() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 074/173] xen-netfront: fix warn message as irq device name has / Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 075/173] RDMA/cma: Protect cma dev list with lock Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 076/173] pstore: Fix incorrect persistent ram buffer mapping Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 077/173] xen/netfront: fix waiting for xenbus state change Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 078/173] IB/ipoib: Avoid a race condition between start_xmit and cm_rep_handler Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 079/173] s390/crypto: Fix return code checking in cbc_paes_crypt() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 080/173] mmc: omap_hsmmc: fix wakeirq handling on removal Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 081/173] ipmi: Fix I2C client removal in the SSIF driver Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 082/173] Tools: hv: Fix a bug in the key delete code Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 083/173] misc: hmc6352: fix potential Spectre v1 Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 084/173] xhci: Fix use after free for URB cancellation on a reallocated endpoint Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 085/173] usb: Dont die twice if PCI xhci host is not responding in resume Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 086/173] mei: ignore not found client in the enumeration Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 087/173] mei: bus: need to unlink client before freeing Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 088/173] USB: Add quirk to support DJI CineSSD Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 089/173] usb: uas: add support for more quirk flags Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 090/173] usb: Avoid use-after-free by flushing endpoints early in usb_set_interface() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 091/173] usb: host: u132-hcd: Fix a sleep-in-atomic-context bug in u132_get_frame() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 092/173] USB: add quirk for WORLDE Controller KS49 or Prodipe MIDI 49C USB controller Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 093/173] usb: gadget: udc: renesas_usb3: fix maxpacket size of ep0 Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 094/173] USB: net2280: Fix erroneous synchronization change Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 095/173] USB: serial: io_ti: fix array underflow in completion handler Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 096/173] usb: misc: uss720: Fix two sleep-in-atomic-context bugs Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 097/173] USB: serial: ti_usb_3410_5052: fix array underflow in completion handler Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 098/173] USB: yurex: Fix buffer over-read in yurex_write() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 099/173] usb: cdc-wdm: Fix a sleep-in-atomic-context bug in service_outstanding_interrupt() Greg Kroah-Hartman
2018-09-24 11:52 ` Greg Kroah-Hartman [this message]
2018-09-24 11:52 ` [PATCH 4.14 101/173] cifs: prevent integer overflow in nxt_dir_entry() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 102/173] CIFS: fix wrapping bugs in num_entries() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 103/173] xtensa: ISS: dont allocate memory in platform_setup Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 104/173] perf/core: Force USER_DS when recording user stack data Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 105/173] x86/EISA: Dont probe EISA bus for Xen PV guests Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 106/173] NFSv4.1 fix infinite loop on I/O Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 107/173] binfmt_elf: Respect error return from `regset->active Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 108/173] net/mlx5: Add missing SET_DRIVER_VERSION command translation Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 109/173] arm64: dts: uniphier: Add missing cooling device properties for CPUs Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 110/173] audit: fix use-after-free in audit_add_watch Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 111/173] mtdchar: fix overflows in adjustment of `count` Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 112/173] vfs: fix freeze protection in mnt_want_write_file() for overlayfs Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 113/173] Bluetooth: Use lock_sock_nested in bt_accept_enqueue Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 114/173] evm: Dont deadlock if a crypto algorithm is unavailable Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 115/173] KVM: PPC: Book3S HV: Add of_node_put() in success path Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 116/173] security: check for kstrdup() failure in lsm_append() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 117/173] MIPS: loongson64: cs5536: Fix PCI_OHCI_INT_REG reads Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 118/173] configfs: fix registered group removal Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 119/173] pinctrl: rza1: Fix selector use for groups and functions Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 120/173] pinctrl: pinmux: Return selector to the pinctrl driver Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 121/173] sched/core: Use smp_mb() in wake_woken_function() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 122/173] efi/esrt: Only call efi_mem_reserve() for boot services memory Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 123/173] ARM: hisi: handle of_iomap and fix missing of_node_put Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 124/173] ARM: hisi: fix error handling and " Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 125/173] ARM: hisi: check of_iomap and fix " Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 126/173] liquidio: fix hang when re-binding VF host drv after running DPDK VF driver Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 127/173] gpu: ipu-v3: csi: pass back mbus_code_to_bus_cfg error codes Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 128/173] tty: fix termios input-speed encoding when using BOTHER Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 129/173] tty: fix termios input-speed encoding Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 130/173] mmc: sdhci-of-esdhc: set proper dma mask for ls104x chips Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 131/173] mmc: tegra: prevent HS200 on Tegra 3 Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 132/173] mmc: sdhci: do not try to use 3.3V signaling if not supported Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 133/173] drm/nouveau: Fix runtime PM leak in drm_open() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 134/173] drm/nouveau/debugfs: Wake up GPU before doing any reclocking Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 135/173] drm/nouveau: tegra: Detach from ARM DMA/IOMMU mapping Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 136/173] parport: sunbpp: fix error return code Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 137/173] sched/fair: Fix util_avg of new tasks for asymmetric systems Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 138/173] coresight: Handle errors in finding input/output ports Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 139/173] coresight: tpiu: Fix disabling timeouts Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 140/173] coresight: ETM: Add support for Arm Cortex-A73 and Cortex-A35 Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 141/173] staging: bcm2835-audio: Dont leak workqueue if open fails Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 142/173] gpio: pxa: Fix potential NULL dereference Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 143/173] gpiolib: Mark gpio_suffixes array with __maybe_unused Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 144/173] mfd: 88pm860x-i2c: switch to i2c_lock_bus(..., I2C_LOCK_SEGMENT) Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 145/173] input: rohm_bu21023: " Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 146/173] rcu: Fix grace-period hangs due to race with CPU offline Greg Kroah-Hartman
2018-09-24 16:44 ` Paul E. McKenney
2018-09-24 11:53 ` [PATCH 4.14 147/173] drm/amdkfd: Fix error codes in kfd_get_process Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 148/173] rtc: bq4802: add error handling for devm_ioremap Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 149/173] ALSA: pcm: Fix snd_interval_refine first/last with open min/max Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 150/173] scsi: libfc: fixup sleeping function called from invalid context Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 151/173] selftest: timers: Tweak raw_skew to SKIP when ADJ_OFFSET/other clock adjustments are in progress Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 152/173] drm/panel: type promotion bug in s6e8aa0_read_mtp_id() Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 153/173] IB/nes: Fix a compiler warning Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 154/173] blk-mq: only attempt to merge bio if there is rq in sw queue Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 155/173] blk-mq: avoid to synchronize rcu inside blk_cleanup_queue() Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 156/173] gpiolib: Respect error code of ->get_direction() Greg Kroah-Hartman
2018-09-25 14:12 ` Jon Hunter
2018-09-25 14:42 ` Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 157/173] pinctrl: msm: Fix msm_config_group_get() to be compliant Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 158/173] pinctrl: qcom: spmi-gpio: Fix pmic_gpio_config_get() " Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 159/173] clk: tegra: bpmp: Dont crash when a clock fails to register Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 160/173] mei: bus: type promotion bug in mei_nfc_if_version() Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 161/173] earlycon: Initialize port->uartclk based on clock-frequency property Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 162/173] earlycon: Remove hardcoded port->uartclk initialization in of_setup_earlycon Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 163/173] ASoC: samsung: i2s: Fix error handling path in i2s_set_sysclk() Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 164/173] ASoC: samsung: Fix invalid argument when devm_gpiod_get is called Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 165/173] drm/i915: Apply the GTT write flush for all !llc machines Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 166/173] net/ipv6: prevent use after free in ip6_route_mpath_notify Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 167/173] e1000e: Remove Other from EIAC Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 168/173] Partial revert "e1000e: Avoid receiver overrun interrupt bursts" Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 169/173] e1000e: Fix queue interrupt re-raising in Other interrupt Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 170/173] e1000e: Avoid missed interrupts following ICR read Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 171/173] Revert "e1000e: Separate signaling for link check/link up" Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 172/173] e1000e: Fix link check race condition Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 173/173] e1000e: Fix check_for_link return value with autoneg off Greg Kroah-Hartman
2018-09-24 18:07 ` [PATCH 4.14 000/173] 4.14.72-stable review Nathan Chancellor
2018-09-24 18:41 ` Greg Kroah-Hartman
2018-09-24 22:33 ` Shuah Khan
2018-09-25 9:07 ` Greg Kroah-Hartman
2018-09-26 0:28 ` Dan Rue
2018-09-26 3:01 ` Rafael Tinoco
2018-09-26 5:30 ` Greg KH
2018-09-26 9:48 ` Rafael Tinoco
2018-09-25 20:47 ` 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=20180924113123.428471393@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=manio@skyboo.net \
--cc=oneukum@suse.com \
--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).