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, Maxime Ripard <maxime.ripard@bootlin.com>,
	Eugen Hristev <eugen.hristev@microchip.com>,
	Ludovic Desroches <ludovic.desroches@microchip.com>,
	Stable@vger.kernel.org,
	Jonathan Cameron <Jonathan.Cameron@huawei.com>
Subject: [PATCH 4.9 104/141] iio: adc: at91: fix wrong channel number in triggered buffer mode
Date: Sun, 11 Nov 2018 14:26:03 -0800	[thread overview]
Message-ID: <20181111221642.477900930@linuxfoundation.org> (raw)
In-Reply-To: <20181111221627.853046496@linuxfoundation.org>

4.9-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Eugen Hristev <eugen.hristev@microchip.com>

commit aea835f2dc8a682942b859179c49ad1841a6c8b9 upstream.

When channels are registered, the hardware channel number is not the
actual iio channel number.
This is because the driver is probed with a certain number of accessible
channels. Some pins are routed and some not, depending on the description of
the board in the DT.
Because of that, channels 0,1,2,3 can correspond to hardware channels
2,3,4,5 for example.
In the buffered triggered case, we need to do the translation accordingly.
Fixed the channel number to stop reading the wrong channel.

Fixes: 0e589d5fb ("ARM: AT91: IIO: Add AT91 ADC driver.")
Cc: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Acked-by: Ludovic Desroches <ludovic.desroches@microchip.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/iio/adc/at91_adc.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

--- a/drivers/iio/adc/at91_adc.c
+++ b/drivers/iio/adc/at91_adc.c
@@ -247,12 +247,14 @@ static irqreturn_t at91_adc_trigger_hand
 	struct iio_poll_func *pf = p;
 	struct iio_dev *idev = pf->indio_dev;
 	struct at91_adc_state *st = iio_priv(idev);
+	struct iio_chan_spec const *chan;
 	int i, j = 0;
 
 	for (i = 0; i < idev->masklength; i++) {
 		if (!test_bit(i, idev->active_scan_mask))
 			continue;
-		st->buffer[j] = at91_adc_readl(st, AT91_ADC_CHAN(st, i));
+		chan = idev->channels + i;
+		st->buffer[j] = at91_adc_readl(st, AT91_ADC_CHAN(st, chan->channel));
 		j++;
 	}
 



  parent reply	other threads:[~2018-11-11 22:36 UTC|newest]

Thread overview: 148+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-11 22:24 [PATCH 4.9 000/141] 4.9.137-stable review Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 001/141] bcache: fix miss key refill->end in writeback Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 002/141] hwmon: (pmbus) Fix page count auto-detection Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 003/141] jffs2: free jffs2_sb_info through jffs2_kill_sb() Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 004/141] pcmcia: Implement CLKRUN protocol disabling for Ricoh bridges Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 005/141] ACPICA: AML interpreter: add region addresses in global list during initialization Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 006/141] ipmi: Fix timer race with module unload Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 007/141] parisc: Fix address in HPMC IVA Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 008/141] parisc: Fix map_pages() to not overwrite existing pte entries Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 009/141] ALSA: hda - Add quirk for ASUS G751 laptop Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 010/141] ALSA: hda - Fix headphone pin config for ASUS G751 Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 011/141] ALSA: hda - Add mic quirk for the Lenovo G50-30 (17aa:3905) Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 012/141] ALSA: ca0106: Disable IZD on SB0570 DAC to fix audio pops Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 013/141] x86/speculation: Enable cross-hyperthread spectre v2 STIBP mitigation Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 014/141] x86/corruption-check: Fix panic in memory_corruption_check() when boot option without value is provided Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 015/141] x86/speculation: Support Enhanced IBRS on future CPUs Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 016/141] bpf: do not blindly change rlimit in reuseport net selftest Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 017/141] Revert "perf tools: Fix PMU term format max value calculation" Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 018/141] xfrm: policy: use hlist rcu variants on insert Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 019/141] sparc: Fix single-pcr perf event counter management Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 020/141] sparc64: Make proc_id signed Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 021/141] sched/fair: Fix the min_vruntime update logic in dequeue_entity() Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 022/141] perf cpu_map: Align cpu map synthesized events properly Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 023/141] x86/fpu: Remove second definition of fpu in __fpu__restore_sig() Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 024/141] net: qla3xxx: Remove overflowing shift statement Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 025/141] selftests: ftrace: Add synthetic event syntax testcase Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 026/141] i2c: rcar: cleanup DMA for all kinds of failure Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 027/141] locking/lockdep: Fix debug_locks off performance problem Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 028/141] ataflop: fix error handling during setup Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 029/141] swim: fix cleanup on setup error Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 030/141] tun: Consistently configure generic netdev params via rtnetlink Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 031/141] s390/sthyi: Fix machine name validity indication Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 032/141] hwmon: (pwm-fan) Set fan speed to 0 on suspend Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 033/141] perf tools: Free temporary sys string in read_event_files() Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 034/141] perf tools: Cleanup trace-event-info tdata leak Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 035/141] perf strbuf: Match va_{add,copy} with va_end Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 036/141] cpupower: Fix coredump on VMWare Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 037/141] mmc: sdhci-pci-o2micro: Add quirk for O2 Micro dev 0x8620 rev 0x01 Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 038/141] iwlwifi: pcie: avoid empty free RB queue Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 039/141] x86/olpc: Indicate that legacy PC XO-1 platform should not register RTC Greg Kroah-Hartman
2018-11-11 22:24 ` [PATCH 4.9 040/141] cpufreq: dt: Try freeing static OPPs only if we have added them Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 041/141] Bluetooth: btbcm: Add entry for BCM4335C0 UART bluetooth Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 042/141] x86: boot: Fix EFI stub alignment Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 043/141] pinctrl: qcom: spmi-mpp: Fix err handling of pmic_mpp_set_mux Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 044/141] brcmfmac: fix for proper support of 160MHz bandwidth Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 045/141] kprobes: Return error if we fail to reuse kprobe instead of BUG_ON() Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 046/141] ACPI / LPSS: Add alternative ACPI HIDs for Cherry Trail DMA controllers Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 047/141] pinctrl: qcom: spmi-mpp: Fix drive strength setting Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 048/141] pinctrl: spmi-mpp: Fix pmic_mpp_config_get() to be compliant Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 049/141] pinctrl: ssbi-gpio: Fix pm8xxx_pin_config_get() " Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 050/141] ixgbevf: VF2VF TCP RSS Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 051/141] ath10k: schedule hardware restart if WMI command times out Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 052/141] cgroup, netclassid: add a preemption point to write_classid Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 053/141] scsi: esp_scsi: Track residual for PIO transfers Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 054/141] scsi: megaraid_sas: fix a missing-check bug Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 055/141] RDMA/core: Do not expose unsupported counters Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 056/141] IB/ipoib: Clear IPCB before icmp_send Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 057/141] tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 058/141] VMCI: Resource wildcard match fixed Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 059/141] usb: gadget: udc: atmel: handle at91sam9rl PMC Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 060/141] ext4: fix argument checking in EXT4_IOC_MOVE_EXT Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 061/141] MD: fix invalid stored role for a disk Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 062/141] PCI/MSI: Warn and return error if driver enables MSI/MSI-X twice Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 063/141] coresight: etb10: Fix handling of perf mode Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 064/141] crypto: caam - fix implicit casts in endianness helpers Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 065/141] usb: chipidea: Prevent unbalanced IRQ disable Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 066/141] driver/dma/ioat: Call del_timer_sync() without holding prep_lock Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 067/141] uio: ensure class is registered before devices Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 068/141] scsi: lpfc: Correct soft lockup when running mds diagnostics Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 069/141] signal: Always deliver the kernels SIGKILL and SIGSTOP to a pid namespace init Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 070/141] dmaengine: dma-jz4780: Return error if not probed from DT Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 071/141] ALSA: hda: Check the non-cached stream buffers more explicitly Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 072/141] ARM: dts: exynos: Remove "cooling-{min|max}-level" for CPU nodes Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 073/141] arm: dts: exynos: Add missing cooling device properties for CPUs Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 074/141] ARM: dts: exynos: Convert exynos5250.dtsi to opp-v2 bindings Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 075/141] ARM: dts: exynos: Mark 1 GHz CPU OPP as suspend OPP on Exynos5250 Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 076/141] xen-swiotlb: use actually allocated size on check physical continuous Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 077/141] tpm: Restore functionality to xen vtpm driver Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 078/141] xen/blkfront: avoid NULL blkfront_info dereference on device removal Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 079/141] xen: fix race in xen_qlock_wait() Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 080/141] xen: make xen_qlock_wait() nestable Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 081/141] libertas: dont set URB_ZERO_PACKET on IN USB transfer Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 082/141] usbip:vudc: BUG kmalloc-2048 (Not tainted): Poison overwritten Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 083/141] iwlwifi: mvm: check return value of rs_rate_from_ucode_rate() Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 084/141] net/ipv4: defensive cipso option parsing Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 085/141] libnvdimm: Hold reference on parent while scheduling async init Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 086/141] ASoC: intel: skylake: Add missing break in skl_tplg_get_token() Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 087/141] jbd2: fix use after free in jbd2_log_do_checkpoint() Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 088/141] gfs2_meta: ->mount() can get NULL dev_name Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 089/141] ext4: initialize retries variable in ext4_da_write_inline_data_begin() Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 090/141] ext4: propagate error from dquot_initialize() in EXT4_IOC_FSSETXATTR Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 091/141] HID: hiddev: fix potential Spectre v1 Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 092/141] EDAC, {i7core,sb,skx}_edac: Fix uncorrected error counting Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 093/141] EDAC, skx_edac: Fix logical channel intermediate decoding Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 094/141] PCI: Add Device IDs for Intel GPU "spurious interrupt" quirk Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 095/141] signal/GenWQE: Fix sending of SIGKILL Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 096/141] crypto: lrw - Fix out-of bounds access on counter overflow Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 097/141] crypto: tcrypt - fix ghash-generic speed test Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 098/141] ima: fix showing large violations or runtime_measurements_count Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 099/141] hugetlbfs: dirty pages as they are added to pagecache Greg Kroah-Hartman
2018-11-11 22:25 ` [PATCH 4.9 100/141] kbuild: fix kernel/bounds.c W=1 warning Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 101/141] iio: ad5064: Fix regulator handling Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 102/141] iio: adc: imx25-gcq: Fix leak of device_node in mx25_gcq_setup_cfgs() Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 103/141] iio: adc: at91: fix acking DRDY irq on simple conversions Greg Kroah-Hartman
2018-11-11 22:26 ` Greg Kroah-Hartman [this message]
2018-11-11 22:26 ` [PATCH 4.9 105/141] w1: omap-hdq: fix missing bus unregister at removal Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 106/141] smb3: allow stats which track session and share reconnects to be reset Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 107/141] smb3: do not attempt cifs operation in smb3 query info error path Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 108/141] smb3: on kerberos mount if server doesnt specify auth type use krb5 Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 109/141] printk: Fix panic caused by passing log_buf_len to command line Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 110/141] genirq: Fix race on spurious interrupt detection Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 111/141] NFSv4.1: Fix the r/wsize checking Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 112/141] nfsd: Fix an Oops in free_session() Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 113/141] lockd: fix access beyond unterminated strings in prints Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 114/141] dm ioctl: harden copy_params()s copy_from_user() from malicious users Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 115/141] powerpc/msi: Fix compile error on mpc83xx Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 116/141] MIPS: OCTEON: fix out of bounds array access on CN68XX Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 117/141] TC: Set DMA masks for devices Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 118/141] media: v4l2-tpg: fix kernel oops when enabling HFLIP and OSD Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 119/141] kgdboc: Passing ekgdboc to command line causes panic Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 120/141] xen: fix xen_qlock_wait() Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 121/141] media: em28xx: use a default format if TRY_FMT fails Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 122/141] media: tvp5150: avoid going past array on v4l2_querymenu() Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 123/141] media: em28xx: fix input name for Terratec AV 350 Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 124/141] media: em28xx: make v4l2-compliance happier by starting sequence on zero Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 125/141] arm64: lse: remove -fcall-used-x0 flag Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 126/141] rpmsg: smd: fix memory leak on channel create Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 127/141] Cramfs: fix abad comparison when wrap-arounds occur Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 128/141] arm64: dts: stratix10: Correct System Manager register size Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 129/141] soc/tegra: pmc: Fix child-node lookup Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 130/141] btrfs: Handle owner mismatch gracefully when walking up tree Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 131/141] btrfs: locking: Add extra check in btrfs_init_new_buffer() to avoid deadlock Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 132/141] btrfs: fix error handling in free_log_tree Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 133/141] btrfs: iterate all devices during trim, instead of fs_devices::alloc_list Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 134/141] btrfs: dont attempt to trim devices that dont support it Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 135/141] btrfs: wait on caching when putting the bg cache Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 136/141] btrfs: reset max_extent_size on clear in a bitmap Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 137/141] btrfs: make sure we create all new block groups Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 138/141] Btrfs: fix wrong dentries after fsync of file that got its parent replaced Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 139/141] btrfs: qgroup: Dirty all qgroups before rescan Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 140/141] Btrfs: fix null pointer dereference on compressed write path error Greg Kroah-Hartman
2018-11-11 22:26 ` [PATCH 4.9 141/141] btrfs: set max_extent_size properly Greg Kroah-Hartman
2018-11-12  2:50 ` [PATCH 4.9 000/141] 4.9.137-stable review kernelci.org bot
2018-11-12 10:38 ` Rafael David Tinoco
2018-11-12 13:33   ` Greg Kroah-Hartman
2018-11-13  5:09     ` Naresh Kamboju
2018-11-13 19:11       ` Greg Kroah-Hartman
2018-11-13  0:55 ` 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=20181111221642.477900930@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Jonathan.Cameron@huawei.com \
    --cc=eugen.hristev@microchip.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ludovic.desroches@microchip.com \
    --cc=maxime.ripard@bootlin.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).