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, Xiaolei Li <xiaolei.li@mediatek.com>,
	Miquel Raynal <miquel.raynal@bootlin.com>
Subject: [PATCH 5.1 358/371] mtd: rawnand: mtk: Correct low level time calculation of r/w cycle
Date: Wed, 24 Jul 2019 21:21:50 +0200	[thread overview]
Message-ID: <20190724191750.992709638@linuxfoundation.org> (raw)
In-Reply-To: <20190724191724.382593077@linuxfoundation.org>

From: Xiaolei Li <xiaolei.li@mediatek.com>

commit e1884ffddacc0424d7e785e6f8087bd12f7196db upstream.

At present, the flow of calculating AC timing of read/write cycle in SDR
mode is that:
At first, calculate high hold time which is valid for both read and write
cycle using the max value between tREH_min and tWH_min.
Secondly, calculate WE# pulse width using tWP_min.
Thridly, calculate RE# pulse width using the bigger one between tREA_max
and tRP_min.

But NAND SPEC shows that Controller should also meet write/read cycle time.
That is write cycle time should be more than tWC_min and read cycle should
be more than tRC_min. Obviously, we do not achieve that now.

This patch corrects the low level time calculation to meet minimum
read/write cycle time required. After getting the high hold time, WE# low
level time will be promised to meet tWP_min and tWC_min requirement,
and RE# low level time will be promised to meet tREA_max, tRP_min and
tRC_min requirement.

Fixes: edfee3619c49 ("mtd: nand: mtk: add ->setup_data_interface() hook")
Cc: stable@vger.kernel.org # v4.17+
Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com>
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/mtd/nand/raw/mtk_nand.c |   24 +++++++++++++++++++++---
 1 file changed, 21 insertions(+), 3 deletions(-)

--- a/drivers/mtd/nand/raw/mtk_nand.c
+++ b/drivers/mtd/nand/raw/mtk_nand.c
@@ -508,7 +508,8 @@ static int mtk_nfc_setup_data_interface(
 {
 	struct mtk_nfc *nfc = nand_get_controller_data(chip);
 	const struct nand_sdr_timings *timings;
-	u32 rate, tpoecs, tprecs, tc2r, tw2r, twh, twst, trlt;
+	u32 rate, tpoecs, tprecs, tc2r, tw2r, twh, twst = 0, trlt = 0;
+	u32 thold;
 
 	timings = nand_get_sdr_timings(conf);
 	if (IS_ERR(timings))
@@ -544,11 +545,28 @@ static int mtk_nfc_setup_data_interface(
 	twh = DIV_ROUND_UP(twh * rate, 1000000) - 1;
 	twh &= 0xf;
 
-	twst = timings->tWP_min / 1000;
+	/* Calculate real WE#/RE# hold time in nanosecond */
+	thold = (twh + 1) * 1000000 / rate;
+	/* nanosecond to picosecond */
+	thold *= 1000;
+
+	/*
+	 * WE# low level time should be expaned to meet WE# pulse time
+	 * and WE# cycle time at the same time.
+	 */
+	if (thold < timings->tWC_min)
+		twst = timings->tWC_min - thold;
+	twst = max(timings->tWP_min, twst) / 1000;
 	twst = DIV_ROUND_UP(twst * rate, 1000000) - 1;
 	twst &= 0xf;
 
-	trlt = max(timings->tREA_max, timings->tRP_min) / 1000;
+	/*
+	 * RE# low level time should be expaned to meet RE# pulse time,
+	 * RE# access time and RE# cycle time at the same time.
+	 */
+	if (thold < timings->tRC_min)
+		trlt = timings->tRC_min - thold;
+	trlt = max3(trlt, timings->tREA_max, timings->tRP_min) / 1000;
 	trlt = DIV_ROUND_UP(trlt * rate, 1000000) - 1;
 	trlt &= 0xf;
 



  parent reply	other threads:[~2019-07-24 20:00 UTC|newest]

Thread overview: 384+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-24 19:15 [PATCH 5.1 000/371] 5.1.20-stable review Greg Kroah-Hartman
2019-07-24 19:15 ` [PATCH 5.1 001/371] MIPS: ath79: fix ar933x uart parity mode Greg Kroah-Hartman
2019-07-24 19:15 ` [PATCH 5.1 002/371] MIPS: fix build on non-linux hosts Greg Kroah-Hartman
2019-07-24 19:15 ` [PATCH 5.1 003/371] arm64/efi: Mark __efistub_stext_offset as an absolute symbol explicitly Greg Kroah-Hartman
2019-07-24 19:15 ` [PATCH 5.1 004/371] scsi: iscsi: set auth_protocol back to NULL if CHAP_A value is not supported Greg Kroah-Hartman
2019-07-24 19:15 ` [PATCH 5.1 005/371] dmaengine: imx-sdma: fix use-after-free on probe error path Greg Kroah-Hartman
2019-07-24 19:15 ` [PATCH 5.1 006/371] ath10k: Check tx_stats before use it Greg Kroah-Hartman
2019-07-24 19:15 ` [PATCH 5.1 007/371] ath10k: htt: dont use txdone_fifo with SDIO Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 008/371] ath10k: fix incorrect multicast/broadcast rate setting Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 009/371] ath9k: Dont trust TX status TID number when reporting airtime Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 010/371] wil6210: fix potential out-of-bounds read Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 011/371] ath10k: Do not send probe response template for mesh Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 012/371] spi: rockchip: turn down tx dma bursts Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 013/371] ath9k: Check for errors when reading SREV register Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 014/371] ath10k: Fix the wrong value of enums for wmi tlv stats id Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 015/371] wil6210: fix missed MISC mbox interrupt Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 016/371] ath6kl: add some bounds checking Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 017/371] ath10k: add peer id check in ath10k_peer_find_by_id Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 018/371] wil6210: fix spurious interrupts in 3-msi Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 019/371] ath: DFS JP domain W56 fixed pulse type 3 RADAR detection Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 020/371] ath10k: Fix encoding for protected management frames Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 021/371] regmap: debugfs: Fix memory leak in regmap_debugfs_init Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 022/371] batman-adv: fix for leaked TVLV handler Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 023/371] media: dvb: usb: fix use after free in dvb_usb_device_exit Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 024/371] media: spi: IR LED: add missing of table registration Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 025/371] crypto: talitos - fix skcipher failure due to wrong output IV Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 026/371] media: ov7740: avoid invalid framesize setting Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 027/371] media: marvell-ccic: fix DMA s/g desc number calculation Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 028/371] media: vpss: fix a potential NULL pointer dereference Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 029/371] media: media_device_enum_links32: clean a reserved field Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 030/371] media: venus: firmware: fix leaked of_node references Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 031/371] crypto: caam - avoid S/G table fetching for AEAD zero-length output Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 032/371] net: stmmac: dwmac1000: Clear unused address entries Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 033/371] net: stmmac: dwmac4/5: " Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 034/371] net: stmmac: Prevent missing interrupts when running NAPI Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 035/371] net: hns3: initialize CPU reverse mapping Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 036/371] qed: Set the doorbell address correctly Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 037/371] signal/pid_namespace: Fix reboot_pid_ns to use send_sig not force_sig Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 038/371] signal/cifs: Fix cifs_put_tcp_session to call send_sig instead of force_sig Greg Kroah-Hartman
2019-07-24 20:49   ` Steve French
2019-07-24 19:16 ` [PATCH 5.1 039/371] af_key: fix leaks in key_pol_get_resp and dump_sp Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 040/371] xfrm: Fix xfrm sel prefix length validation Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 041/371] media: vim2m: fix two double-free issues Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 042/371] media: v4l2-core: fix use-after-free error Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 043/371] fscrypt: clean up some BUG_ON()s in block encryption/decryption Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 044/371] media: usb:zr364xx:Fix KASAN:null-ptr-deref Read in zr364xx_vidioc_querycap Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 045/371] perf annotate TUI browser: Do not use member from variable within its own initialization Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 046/371] media: mc-device.c: dont memset __user pointer contents Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 047/371] media: saa7164: fix remove_proc_entry warning Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 048/371] media: staging: media: davinci_vpfe: - Fix for memory leak if decoder initialization fails Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 049/371] net: phy: Check against net_device being NULL Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 050/371] crypto: talitos - properly handle split ICV Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 051/371] crypto: talitos - Align SEC1 accesses to 32 bits boundaries Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 052/371] tua6100: Avoid build warnings Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 053/371] batman-adv: Fix duplicated OGMs on NETDEV_UP Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 054/371] locking/lockdep: Fix OOO unlock when hlocks need merging Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 055/371] locking/lockdep: Fix merging of hlocks with non-zero references Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 056/371] media: wl128x: Fix some error handling in fm_v4l2_init_video_device() Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 057/371] net: hns3: add a check to pointer in error_detected and slot_reset Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 058/371] net: hns3: set ops to null when unregister ad_dev Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 059/371] cpupower : frequency-set -r option misses the last cpu in related cpu list Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 060/371] arm64: mm: make CONFIG_ZONE_DMA32 configurable Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 061/371] media: imx7-mipi-csis: Propagate the error if clock enabling fails Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 062/371] perf jvmti: Address gcc string overflow warning for strncpy() Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 063/371] media: aspeed: change irq to threaded irq Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 064/371] net: stmmac: dwmac4: fix flow control issue Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 065/371] net: stmmac: modify default value of tx-frames Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 066/371] crypto: inside-secure - do not rely on the hardware last bit for result descriptors Greg Kroah-Hartman
2019-07-24 19:16 ` [PATCH 5.1 067/371] net: fec: Do not use netdev messages too early Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 068/371] net: axienet: Fix race condition causing TX hang Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 069/371] s390/qdio: handle PENDING state for QEBSM devices Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 070/371] RAS/CEC: Fix pfn insertion Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 071/371] net: sfp: add mutex to prevent concurrent state checks Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 072/371] ipset: Fix memory accounting for hash types on resize Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 073/371] perf cs-etm: Properly set the value of old and head in snapshot mode Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 074/371] perf test 6: Fix missing kvm module load for s390 Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 075/371] perf report: Fix OOM error in TUI mode on s390 Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 076/371] irqchip/meson-gpio: Add support for Meson-G12A SoC Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 077/371] media: uvcvideo: Fix access to uninitialized fields on probe error Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 078/371] media: fdp1: Support M3N and E3 platforms Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 079/371] iommu: Fix a leak in iommu_insert_resv_region Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 080/371] gpio: omap: fix lack of irqstatus_raw0 for OMAP4 Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 081/371] gpio: omap: ensure irq is enabled before wakeup Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 082/371] regmap: fix bulk writes on paged registers Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 083/371] gpio: omap: Fix lost edge wake-up interrupts Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 084/371] media: davinci: vpif_capture: fix memory leak in vpif_probe() Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 085/371] bpf: silence warning messages in core Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 086/371] media: s5p-mfc: fix reading min scratch buffer size on MFC v6/v7 Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 087/371] selinux: fix empty write to keycreate file Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 088/371] crypto: testmgr - add some more preemption points Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 089/371] x86/cpu: Add Ice Lake NNPI to Intel family Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 090/371] ASoC: meson: axg-tdm: fix sample clock inversion Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 091/371] rcu: Force inlining of rcu_read_lock() Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 092/371] x86/cpufeatures: Add FDP_EXCPTN_ONLY and ZERO_FCS_FDS Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 093/371] qed: iWARP - Fix tc for MPA ll2 connection Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 094/371] net: hns3: fix for dereferencing before null checking Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 095/371] net: hns3: fix for skb leak when doing selftest Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 096/371] net: hns3: delay ring buffer clearing during reset Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 097/371] block: null_blk: fix race condition for null_del_dev Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 098/371] blkcg, writeback: dead memcgs shouldnt contribute to writeback ownership arbitration Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 099/371] xfrm: fix sa selector validation Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 100/371] sched/core: Add __sched tag for io_schedule() Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 101/371] sched/fair: Fix "runnable_avg_yN_inv" not used warnings Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 102/371] perf/x86/intel: Disable check_msr for real HW Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 103/371] perf/x86/intel/uncore: Handle invalid event coding for free-running counter Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 104/371] integrity: Fix __integrity_init_keyring() section mismatch Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 105/371] x86/atomic: Fix smp_mb__{before,after}_atomic() Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 106/371] perf evsel: Make perf_evsel__name() accept a NULL argument Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 107/371] vhost_net: disable zerocopy by default Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 108/371] iavf: allow null RX descriptors Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 109/371] ipoib: correcly show a VF hardware address Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 110/371] ASoC: rsnd: fixup mod ID calculation in rsnd_ctu_probe_ Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 111/371] bpf: fix callees pruning callers Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 112/371] PCI: Add missing link delays required by the PCIe spec Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 113/371] net: netsec: initialize tx ring on ndo_open Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 114/371] x86/cacheinfo: Fix a -Wtype-limits warning Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 115/371] blk-iolatency: only account submitted bios Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 116/371] ACPICA: Clear status of GPEs on first direct enable Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 117/371] spi: fix ctrl->num_chipselect constraint Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 118/371] EDAC/sysfs: Drop device references properly Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 119/371] EDAC/sysfs: Fix memory leak when creating a csrow object Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 120/371] nvme: fix possible io failures when removing multipathed ns Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 121/371] nvme-pci: properly report state change failure in nvme_reset_work Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 122/371] nvme-pci: set the errno on ctrl state change error Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 123/371] lightnvm: pblk: fix freeing of merged pages Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 124/371] nvme-pci: adjust irq max_vector using num_possible_cpus() Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 125/371] arm64: Do not enable IRQs for ct_user_exit Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 126/371] ipsec: select crypto ciphers for xfrm_algo Greg Kroah-Hartman
2019-07-24 19:17 ` [PATCH 5.1 127/371] ipvs: defer hook registration to avoid leaks Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 128/371] media: s5p-mfc: Make additional clocks optional Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 129/371] media: i2c: fix warning same module names Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 130/371] ntp: Limit TAI-UTC offset Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 131/371] timer_list: Guard procfs specific code Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 132/371] media: mt9m111: fix fw-node refactoring Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 133/371] ASoC: soc-core: call snd_soc_unbind_card() under mutex_lock; Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 134/371] acpi/arm64: ignore 5.1 FADTs that are reported as 5.0 Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 135/371] media: coda: fix mpeg2 sequence number handling Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 136/371] media: coda: fix last buffer handling in V4L2_ENC_CMD_STOP Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 137/371] media: coda: increment sequence offset for the last returned frame Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 138/371] media: vimc: cap: check v4l2_fill_pixfmt return value Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 139/371] media: hdpvr: fix locking and a missing msleep Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 140/371] net: stmmac: sun8i: force select external PHY when no internal one Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 141/371] rtlwifi: rtl8192cu: fix error handle when usb probe failed Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 142/371] mt7601u: do not schedule rx_tasklet when the device has been disconnected Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 143/371] x86/build: Add set -e to mkcapflags.sh to delete broken capflags.c Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 144/371] mt7601u: fix possible memory leak when the device is disconnected Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 145/371] ipvs: fix tinfo memory leak in start_sync_thread Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 146/371] ath10k: add missing error handling Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 147/371] ath10k: fix fw crash by moving chip reset after napi disabled Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 148/371] ath10k: fix PCIE device wake up failed Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 149/371] perf tools: Increase MAX_NR_CPUS and MAX_CACHES Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 150/371] ASoC: Intel: hdac_hdmi: Set ops to NULL on remove Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 151/371] clocksource/drivers/tegra: Release all IRQs on request_irq() error Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 152/371] libata: dont request sense data on !ZAC ATA devices Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 153/371] clocksource/drivers/tegra: Restore base address before cleanup Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 154/371] clocksource/drivers/exynos_mct: Increase priority over ARM arch timer Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 155/371] netfilter: ctnetlink: Fix regression in conntrack entry deletion Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 156/371] xsk: Properly terminate assignment in xskq_produce_flush_desc Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 157/371] rslib: Fix decoding of shortened codes Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 158/371] bpf: fix BPF_ALU32 | BPF_ARSH on BE arches Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 159/371] rslib: Fix handling of of caller provided syndrome Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 160/371] gpio: Fix return value mismatch of function gpiod_get_from_of_node() Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 161/371] net/mlx5: Get vport ACL namespace by vport index Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 162/371] ixgbe: Check DDM existence in transceiver before access Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 163/371] crypto: serpent - mark __serpent_setkey_sbox noinline Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 164/371] crypto: asymmetric_keys - select CRYPTO_HASH where needed Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 165/371] ath9k: correctly handle short radar pulses Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 166/371] wil6210: drop old event after wmi_call timeout Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 167/371] EDAC: Fix global-out-of-bounds write when setting edac_mc_poll_msec Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 168/371] bcache: check CACHE_SET_IO_DISABLE in allocator code Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 169/371] bcache: check CACHE_SET_IO_DISABLE bit in bch_journal() Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 170/371] bcache: acquire bch_register_lock later in cached_dev_free() Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 171/371] bcache: check c->gc_thread by IS_ERR_OR_NULL in cache_set_flush() Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 172/371] bcache: fix potential deadlock in cached_def_free() Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 173/371] net: hns3: fix a -Wformat-nonliteral compile warning Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 174/371] net: hns3: add some error checking in hclge_tm module Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 175/371] ath10k: Fix memory leak in qmi Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 176/371] ath10k: destroy sdio workqueue while remove sdio module Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 177/371] net: mvpp2: prs: Dont override the sign bit in SRAM parser shift Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 178/371] igb: clear out skb->tstamp after reading the txtime Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 179/371] net: hns3: add Asym Pause support to fix autoneg problem Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 180/371] ixgbe: Avoid NULL pointer dereference with VF on non-IPsec hw Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 181/371] iwlwifi: mvm: Drop large non sta frames Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 182/371] bpf: fix uapi bpf_prog_info fields alignment Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 183/371] netfilter: Fix remainder of pseudo-header protocol 0 Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 184/371] iwlwifi: dbg: fix debug monitor stop and restart delays Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 185/371] bnxt_en: Disable bus master during PCI shutdown and driver unload Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 186/371] bnxt_en: Fix statistics context reservation logic for RDMA driver Greg Kroah-Hartman
2019-07-24 19:18 ` [PATCH 5.1 187/371] ALSA: hda: Fix a headphone detection issue when using SOF Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 188/371] perf stat: Make metric event lookup more robust Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 189/371] perf stat: Fix metrics with --no-merge Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 190/371] perf stat: Dont merge events in the same PMU Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 191/371] perf stat: Fix group lookup for metric group Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 192/371] vxlan: do not destroy fdb if register_netdevice() is failed Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 193/371] bnx2x: Prevent ptp_task to be rescheduled indefinitely Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 194/371] net: usb: asix: init MAC address buffers Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 195/371] rxrpc: Fix oops in tracepoint Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 196/371] libbpf: fix GCC8 warning for strncpy Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 197/371] bpf, libbpf, smatch: Fix potential NULL pointer dereference Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 198/371] selftests: bpf: fix inlines in test_lwt_seg6local Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 199/371] bonding: validate ip header before check IPPROTO_IGMP Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 200/371] gpiolib: Fix references to gpiod_[gs]et_*value_cansleep() variants Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 201/371] ASoC: audio-graph-card: fix use-after-free in graph_for_each_link Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 202/371] tools: bpftool: Fix json dump crash on powerpc Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 203/371] net: hns3: enable broadcast promisc mode when initializing VF Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 204/371] Bluetooth: hci_bcsp: Fix memory leak in rx_skb Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 205/371] Bluetooth: Add new 13d3:3491 QCA_ROME device Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 206/371] Bluetooth: Add new 13d3:3501 " Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 207/371] Bluetooth: 6lowpan: search for destination address in all peers Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 208/371] genirq: Update irq stats from NMI handlers Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 209/371] perf tests: Fix record+probe_libc_inet_pton.sh for powerpc64 Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 210/371] Bluetooth: Check state in l2cap_disconnect_rsp Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 211/371] Bluetooth: hidp: NUL terminate a string in the compat ioctl Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 212/371] gtp: add missing gtp_encap_disable_sock() in gtp_encap_enable() Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 213/371] Bluetooth: validate BLE connection interval updates Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 214/371] gtp: fix suspicious RCU usage Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 215/371] gtp: fix Illegal context switch in RCU read-side critical section Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 216/371] gtp: fix use-after-free in gtp_encap_destroy() Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 217/371] gtp: fix use-after-free in gtp_newlink() Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 218/371] xdp: fix race on generic receive path Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 219/371] net: mvmdio: defer probe of orion-mdio if a clock is not ready Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 220/371] net: hns3: fix __QUEUE_STATE_STACK_XOFF not cleared issue Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 221/371] iavf: fix dereference of null rx_buffer pointer Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 222/371] blk-iolatency: fix STS_AGAIN handling Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 223/371] libbpf: fix another GCC8 warning for strncpy Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 224/371] floppy: fix div-by-zero in setup_format_params Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 225/371] floppy: fix out-of-bounds read in next_valid_format Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 226/371] floppy: fix invalid pointer dereference in drive_name Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 227/371] floppy: fix out-of-bounds read in copy_buffer Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 228/371] xen: let alloc_xenballooned_pages() fail if not enough memory free Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 229/371] scsi: NCR5380: Always re-enable reselection interrupt Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 230/371] scsi: NCR5380: Handle PDMA failure reliably Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 231/371] Revert "scsi: ncr5380: Increase register polling limit" Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 232/371] scsi: core: Fix race on creating sense cache Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 233/371] scsi: sd_zbc: Fix compilation warning Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 234/371] scsi: zfcp: fix request object use-after-free in send path causing seqno errors Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 235/371] scsi: zfcp: fix request object use-after-free in send path causing wrong traces Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 236/371] scsi: megaraid_sas: Fix calculation of target ID Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 237/371] scsi: mac_scsi: Increase PIO/PDMA transfer length threshold Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 238/371] scsi: mac_scsi: Fix pseudo DMA implementation, take 2 Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 239/371] crypto: ghash - fix unaligned memory access in ghash_setkey() Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 240/371] crypto: caam - limit output IV to CBC to work around CTR mode DMA issue Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 241/371] crypto: ccp - Validate the the error value used to index error messages Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 242/371] crypto: arm64/sha1-ce - correct digest for empty data in finup Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 243/371] crypto: arm64/sha2-ce " Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 244/371] crypto: chacha20poly1305 - fix atomic sleep when using async algorithm Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 245/371] crypto: crypto4xx - fix AES CTR blocksize value Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 246/371] crypto: crypto4xx - fix blocksize for cfb and ofb Greg Kroah-Hartman
2019-07-24 19:19 ` [PATCH 5.1 247/371] crypto: crypto4xx - block ciphers should only accept complete blocks Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 248/371] crypto: ccp - memset structure fields to zero before reuse Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 249/371] crypto: ccp/gcm - use const time tag comparison Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 250/371] crypto: crypto4xx - fix a potential double free in ppc4xx_trng_probe Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 251/371] cifs: always add credits back for unsolicited PDUs Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 252/371] cifs: fix crash in smb2_compound_op()/smb2_set_next_command() Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 253/371] cifs: Properly handle auto disabling of serverino option Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 254/371] cifs: flush before set-info if we have writeable handles Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 255/371] CIFS: fix deadlock in cached root handling Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 256/371] Revert "bcache: set CACHE_SET_IO_DISABLE in bch_cached_dev_error()" Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 257/371] bcache: Revert "bcache: fix high CPU occupancy during journal" Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 258/371] bcache: Revert "bcache: free heap cache_set->flush_btree in bch_journal_free" Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 259/371] bcache: ignore read-ahead request failure on backing device Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 260/371] bcache: fix mistaken sysfs entry for io_error counter Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 261/371] bcache: destroy dc->writeback_write_wq if failed to create dc->writeback_thread Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 262/371] Input: gtco - bounds check collection indent level Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 263/371] Input: alps - dont handle ALPS cs19 trackpoint-only device Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 264/371] Input: synaptics - whitelist Lenovo T580 SMBus intertouch Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 265/371] Input: alps - fix a mismatch between a condition check and its comment Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 266/371] regulator: s2mps11: Fix ERR_PTR dereference on GPIO lookup failure Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 267/371] regulator: s2mps11: Fix buck7 and buck8 wrong voltages Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 268/371] arm64: tegra: Update Jetson TX1 GPU regulator timings Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 269/371] iwlwifi: add support for hr1 RF ID Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 270/371] iwlwifi: pcie: dont service an interrupt that was masked Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 271/371] iwlwifi: pcie: fix ALIVE interrupt handling for gen2 devices w/o MSI-X Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 272/371] iwlwifi: dont WARN when calling iwl_get_shared_mem_conf with RF-Kill Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 273/371] iwlwifi: fix RF-Kill interrupt while FW load for gen2 devices Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 274/371] iwlwifi: mvm: delay GTK setting in FW in AP mode Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 275/371] iwlwifi: mvm: clear rfkill_safe_init_done when we start the firmware Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 276/371] opp: Dont use IS_ERR on invalid supplies Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 277/371] arm64: Fix interrupt tracing in the presence of NMIs Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 278/371] NFSv4: Handle the special Linux file open access mode Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 279/371] Revert "NFS: readdirplus optimization by cache mechanism" (memleak) Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 280/371] pnfs/flexfiles: Fix PTR_ERR() dereferences in ff_layout_track_ds_error Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 281/371] pnfs: Fix a problem where we gratuitously start doing I/O through the MDS Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 282/371] SUNRPC: Ensure the bvecs are reset when we re-encode the RPC request Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 283/371] lib/scatterlist: Fix mapping iterator when sg->offset is greater than PAGE_SIZE Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 284/371] ASoC: dapm: Adapt for debugfs API change Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 285/371] ASoC: core: " Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 286/371] raid5-cache: Need to do start() part job after adding journal device Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 287/371] ALSA: seq: Break too long mutex context in the write loop Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 288/371] ALSA: hda - Dont resume forcibly i915 HDMI/DP codec Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 289/371] ALSA: hda/realtek - Fixed Headphone Mic cant record on Dell platform Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 290/371] ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 291/371] ALSA: hda/hdmi - Remove duplicated define Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 292/371] ALSA: hda/hdmi - Fix i915 reverse port/pin mapping Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 293/371] ceph: fix end offset in truncate_inode_pages_range call Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 294/371] media: v4l2: Test type instead of cfg->type in v4l2_ctrl_new_custom() Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 295/371] media: coda: Remove unbalanced and unneeded mutex unlock Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 296/371] media: videobuf2-core: Prevent size alignment wrapping buffer size to 0 Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 297/371] media: videobuf2-dma-sg: Prevent size from overflowing Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 298/371] KVM: nVMX: Dont dump VMCS if virtual APIC page cant be mapped Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 299/371] KVM: nVMX: Always sync GUEST_BNDCFGS when it comes from vmcs01 Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 300/371] KVM: VMX: Fix handling of #MC that occurs during VM-Entry Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 301/371] KVM: VMX: check CPUID before allowing read/write of IA32_XSS Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 302/371] KVM: PPC: Book3S HV: Signed extend decrementer value if not using large decrementer Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 303/371] KVM: PPC: Book3S HV: Clear pending decrementer exceptions on nested guest entry Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 304/371] KVM: PPC: Book3S HV: Fix CR0 setting in TM emulation Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 305/371] KVM: x86/vPMU: refine kvm_pmu err msg when event creation failed Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 306/371] arm64: tegra: Fix AGIC register range Greg Kroah-Hartman
2019-07-24 19:20 ` [PATCH 5.1 307/371] arm64: irqflags: Add condition flags to inline asm clobber list Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 308/371] signal/usb: Replace kill_pid_info_as_cred with kill_pid_usb_asyncio Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 309/371] signal: Correct namespace fixups of si_pid and si_uid Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 310/371] fs/proc/proc_sysctl.c: fix the default values of i_uid/i_gid on /proc/sys inodes Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 311/371] i3c: fix i2c and i3c scl rate by bus mode Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 312/371] kconfig: fix missing choice values in auto.conf Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 313/371] ARM: dts: gemini: Set DIR-685 SPI CS as active low Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 314/371] drm/nouveau/i2c: Enable i2c pads & busses during preinit Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 315/371] padata: use smp_mb in padata_reorder to avoid orphaned padata jobs Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 316/371] dm zoned: fix zone state management race Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 317/371] xen/events: fix binding user event channels to cpus Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 318/371] 9p/xen: Add cleanup path in p9_trans_xen_init Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 319/371] 9p/virtio: Add cleanup path in p9_virtio_init Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 320/371] rt2x00usb: fix rx queue hang Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 321/371] x86/boot: Fix memory leak in default_get_smp_config() Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 322/371] perf/x86/intel: Fix spurious NMI on fixed counter Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 323/371] perf/x86/amd/uncore: Do not set ThreadMask and SliceMask for non-L3 PMCs Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 324/371] perf/x86/amd/uncore: Set the thread mask for F17h L3 PMCs Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 325/371] drm/edid: parse CEA blocks embedded in DisplayID Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 326/371] block: Allow mapping of vmalloc-ed buffers Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 327/371] block: Fix potential overflow in blk_report_zones() Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 328/371] RDMA/srp: Accept again source addresses that do not have a port number Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 329/371] intel_th: pci: Add Ice Lake NNPI support Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 330/371] PCI: hv: Fix a use-after-free bug in hv_eject_device_work() Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 331/371] PCI: Do not poll for PME if the device is in D3cold Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 332/371] PCI: qcom: Ensure that PERST is asserted for at least 100 ms Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 333/371] Btrfs: fix data loss after inode eviction, renaming it, and fsync it Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 334/371] Btrfs: fix fsync not persisting dentry deletions due to inode evictions Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 335/371] Btrfs: add missing inode version, ctime and mtime updates when punching hole Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 336/371] IB/mlx5: Report correctly tag matching rendezvous capability Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 337/371] HID: wacom: generic: only switch the mode on devices with LEDs Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 338/371] HID: wacom: generic: Correct pad syncing Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 339/371] HID: wacom: correct touch resolution x/y typo Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 340/371] mm/nvdimm: add is_ioremap_addr and use that to check ioremap address Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 341/371] libnvdimm/pfn: fix fsdax-mode namespace info-block zero-fields Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 342/371] coda: pass the host file in vma->vm_file on mmap Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 343/371] include/asm-generic/bug.h: fix "cut here" for WARN_ON for __WARN_TAINT architectures Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 344/371] resource: fix locking in find_next_iomem_res() Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 345/371] xfs: abort unaligned nowait directio early Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 346/371] gpu: ipu-v3: ipu-ic: Fix saturation bit offset in TPMEM Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 347/371] parisc: Ensure userspace privilege for ptraced processes in regset functions Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 348/371] parisc: Fix kernel panic due invalid values in IAOQ0 or IAOQ1 Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 349/371] powerpc/32s: fix suspend/resume when IBATs 4-7 are used Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 350/371] powerpc/mm/32s: fix condition that is always true Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 351/371] powerpc/watchpoint: Restore NV GPRs while returning from exception Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 352/371] powerpc/powernv/npu: Fix reference leak Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 353/371] powerpc/powernv: Fix stale iommu table base after VFIO Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 354/371] powerpc/pseries: Fix xive=off command line Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 355/371] powerpc/pseries: Fix oops in hotplug memory notifier Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 356/371] mmc: sdhci-msm: fix mutex while in spinlock Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 357/371] eCryptfs: fix a couple type promotion bugs Greg Kroah-Hartman
2019-07-24 19:21 ` Greg Kroah-Hartman [this message]
2019-07-24 19:21 ` [PATCH 5.1 359/371] mtd: spinand: read returns badly if the last page has bitflips Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 360/371] intel_th: msu: Fix single mode with disabled IOMMU Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 361/371] Bluetooth: Add SMP workaround Microsoft Surface Precision Mouse bug Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 362/371] dax: Fix missed wakeup with PMD faults Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 363/371] usb: Handle USB3 remote wakeup for LPM enabled devices correctly Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 364/371] blk-throttle: fix zero wait time for iops throttled group Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 365/371] clk: imx: imx8mm: correct audio_pll2_clk to audio_pll2_out Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 366/371] blk-iolatency: clear use_delay when io.latency is set to zero Greg Kroah-Hartman
2019-07-24 19:21 ` [PATCH 5.1 367/371] blkcg: update blkcg_print_stat() to handle larger outputs Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 5.1 368/371] net: mvmdio: allow up to four clocks to be specified for orion-mdio Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 5.1 369/371] dt-bindings: allow up to four clocks " Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 5.1 370/371] pstore: Fix double-free in pstore_mkfile() failure path Greg Kroah-Hartman
2019-07-24 19:22 ` [PATCH 5.1 371/371] dm bufio: fix deadlock with loop device Greg Kroah-Hartman
2019-07-24 23:34 ` [PATCH 5.1 000/371] 5.1.20-stable review kernelci.org bot
2019-07-25  1:04 ` Jiunn Chang
2019-07-25  4:58 ` Naresh Kamboju
2019-07-25  9:03 ` Jon Hunter
2019-07-25 15:29 ` shuah
2019-07-25 16:33 ` Guenter Roeck
2019-07-25 17:12   ` Greg Kroah-Hartman
2019-07-25 22:19 ` Guenter Roeck
2019-07-26  7:24   ` Greg Kroah-Hartman
2019-07-26  6:20 ` Kelsey Skunberg
2019-07-26 12:24 ` Bharath Vedartham

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=20190724191750.992709638@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=miquel.raynal@bootlin.com \
    --cc=stable@vger.kernel.org \
    --cc=xiaolei.li@mediatek.com \
    /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).