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, Filipe Manana <fdmanana@suse.com>,
	David Sterba <dsterba@suse.com>
Subject: [PATCH 4.14 157/293] Btrfs: fix data loss after inode eviction, renaming it, and fsync it
Date: Mon, 29 Jul 2019 21:20:48 +0200	[thread overview]
Message-ID: <20190729190836.588994383@linuxfoundation.org> (raw)
In-Reply-To: <20190729190820.321094988@linuxfoundation.org>

From: Filipe Manana <fdmanana@suse.com>

commit d1d832a0b51dd9570429bb4b81b2a6c1759e681a upstream.

When we log an inode, regardless of logging it completely or only that it
exists, we always update it as logged (logged_trans and last_log_commit
fields of the inode are updated). This is generally fine and avoids future
attempts to log it from having to do repeated work that brings no value.

However, if we write data to a file, then evict its inode after all the
dealloc was flushed (and ordered extents completed), rename the file and
fsync it, we end up not logging the new extents, since the rename may
result in logging that the inode exists in case the parent directory was
logged before. The following reproducer shows and explains how this can
happen:

  $ mkfs.btrfs -f /dev/sdb
  $ mount /dev/sdb /mnt

  $ mkdir /mnt/dir
  $ touch /mnt/dir/foo
  $ touch /mnt/dir/bar

  # Do a direct IO write instead of a buffered write because with a
  # buffered write we would need to make sure dealloc gets flushed and
  # complete before we do the inode eviction later, and we can not do that
  # from user space with call to things such as sync(2) since that results
  # in a transaction commit as well.
  $ xfs_io -d -c "pwrite -S 0xd3 0 4K" /mnt/dir/bar

  # Keep the directory dir in use while we evict inodes. We want our file
  # bar's inode to be evicted but we don't want our directory's inode to
  # be evicted (if it were evicted too, we would not be able to reproduce
  # the issue since the first fsync below, of file foo, would result in a
  # transaction commit.
  $ ( cd /mnt/dir; while true; do :; done ) &
  $ pid=$!

  # Wait a bit to give time for the background process to chdir.
  $ sleep 0.1

  # Evict all inodes, except the inode for the directory dir because it is
  # currently in use by our background process.
  $ echo 2 > /proc/sys/vm/drop_caches

  # fsync file foo, which ends up persisting information about the parent
  # directory because it is a new inode.
  $ xfs_io -c fsync /mnt/dir/foo

  # Rename bar, this results in logging that this inode exists (inode item,
  # names, xattrs) because the parent directory is in the log.
  $ mv /mnt/dir/bar /mnt/dir/baz

  # Now fsync baz, which ends up doing absolutely nothing because of the
  # rename operation which logged that the inode exists only.
  $ xfs_io -c fsync /mnt/dir/baz

  <power failure>

  $ mount /dev/sdb /mnt
  $ od -t x1 -A d /mnt/dir/baz
  0000000

    --> Empty file, data we wrote is missing.

Fix this by not updating last_sub_trans of an inode when we are logging
only that it exists and the inode was not yet logged since it was loaded
from disk (full_sync bit set), this is enough to make btrfs_inode_in_log()
return false for this scenario and make us log the inode. The logged_trans
of the inode is still always setsince that alone is used to track if names
need to be deleted as part of unlink operations.

Fixes: 257c62e1bce03e ("Btrfs: avoid tree log commit when there are no changes")
CC: stable@vger.kernel.org # 4.4+
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 fs/btrfs/tree-log.c |   12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

--- a/fs/btrfs/tree-log.c
+++ b/fs/btrfs/tree-log.c
@@ -5266,9 +5266,19 @@ log_extents:
 		}
 	}
 
+	/*
+	 * Don't update last_log_commit if we logged that an inode exists after
+	 * it was loaded to memory (full_sync bit set).
+	 * This is to prevent data loss when we do a write to the inode, then
+	 * the inode gets evicted after all delalloc was flushed, then we log
+	 * it exists (due to a rename for example) and then fsync it. This last
+	 * fsync would do nothing (not logging the extents previously written).
+	 */
 	spin_lock(&inode->lock);
 	inode->logged_trans = trans->transid;
-	inode->last_log_commit = inode->last_sub_trans;
+	if (inode_only != LOG_INODE_EXISTS ||
+	    !test_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags))
+		inode->last_log_commit = inode->last_sub_trans;
 	spin_unlock(&inode->lock);
 out_unlock:
 	if (unlikely(err))



  parent reply	other threads:[~2019-07-29 19:31 UTC|newest]

Thread overview: 302+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-29 19:18 [PATCH 4.14 000/293] 4.14.135-stable review Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 001/293] MIPS: ath79: fix ar933x uart parity mode Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 002/293] MIPS: fix build on non-linux hosts Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 003/293] arm64/efi: Mark __efistub_stext_offset as an absolute symbol explicitly Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 004/293] scsi: iscsi: set auth_protocol back to NULL if CHAP_A value is not supported Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 005/293] dmaengine: imx-sdma: fix use-after-free on probe error path Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 006/293] wil6210: fix potential out-of-bounds read Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 007/293] ath10k: Do not send probe response template for mesh Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 008/293] ath9k: Check for errors when reading SREV register Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 009/293] ath6kl: add some bounds checking Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 010/293] ath: DFS JP domain W56 fixed pulse type 3 RADAR detection Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 011/293] batman-adv: fix for leaked TVLV handler Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 012/293] media: dvb: usb: fix use after free in dvb_usb_device_exit Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 013/293] media: spi: IR LED: add missing of table registration Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 014/293] crypto: talitos - fix skcipher failure due to wrong output IV Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 015/293] media: marvell-ccic: fix DMA s/g desc number calculation Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 016/293] media: vpss: fix a potential NULL pointer dereference Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 017/293] media: media_device_enum_links32: clean a reserved field Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 018/293] net: stmmac: dwmac1000: Clear unused address entries Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 019/293] net: stmmac: dwmac4/5: " Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 020/293] qed: Set the doorbell address correctly Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 021/293] signal/pid_namespace: Fix reboot_pid_ns to use send_sig not force_sig Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 022/293] af_key: fix leaks in key_pol_get_resp and dump_sp Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 023/293] xfrm: Fix xfrm sel prefix length validation Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 024/293] fscrypt: clean up some BUG_ON()s in block encryption/decryption Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 025/293] media: mc-device.c: dont memset __user pointer contents Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 026/293] media: staging: media: davinci_vpfe: - Fix for memory leak if decoder initialization fails Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 027/293] net: phy: Check against net_device being NULL Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 028/293] crypto: talitos - properly handle split ICV Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 029/293] crypto: talitos - Align SEC1 accesses to 32 bits boundaries Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 030/293] tua6100: Avoid build warnings Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 031/293] locking/lockdep: Fix merging of hlocks with non-zero references Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 032/293] media: wl128x: Fix some error handling in fm_v4l2_init_video_device() Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 033/293] cpupower : frequency-set -r option misses the last cpu in related cpu list Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 034/293] net: stmmac: dwmac4: fix flow control issue Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 035/293] net: fec: Do not use netdev messages too early Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 036/293] net: axienet: Fix race condition causing TX hang Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 037/293] s390/qdio: handle PENDING state for QEBSM devices Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 038/293] RAS/CEC: Fix pfn insertion Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 039/293] net: sfp: add mutex to prevent concurrent state checks Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 040/293] ipset: Fix memory accounting for hash types on resize Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 041/293] perf cs-etm: Properly set the value of old and head in snapshot mode Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 042/293] perf test 6: Fix missing kvm module load for s390 Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 043/293] media: fdp1: Support M3N and E3 platforms Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 044/293] iommu: Fix a leak in iommu_insert_resv_region Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 045/293] gpio: omap: fix lack of irqstatus_raw0 for OMAP4 Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 046/293] gpio: omap: ensure irq is enabled before wakeup Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 047/293] regmap: fix bulk writes on paged registers Greg Kroah-Hartman
2019-07-29 19:18 ` [PATCH 4.14 048/293] bpf: silence warning messages in core Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 049/293] rcu: Force inlining of rcu_read_lock() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 050/293] x86/cpufeatures: Add FDP_EXCPTN_ONLY and ZERO_FCS_FDS Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 051/293] blkcg, writeback: dead memcgs shouldnt contribute to writeback ownership arbitration Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 052/293] xfrm: fix sa selector validation Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 053/293] sched/core: Add __sched tag for io_schedule() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 054/293] sched/fair: Fix "runnable_avg_yN_inv" not used warnings Greg Kroah-Hartman
2019-07-30 18:28   ` Nathan Chancellor
2019-07-30 18:38     ` Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 055/293] x86/atomic: Fix smp_mb__{before,after}_atomic() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 056/293] perf evsel: Make perf_evsel__name() accept a NULL argument Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 057/293] vhost_net: disable zerocopy by default Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 058/293] ipoib: correcly show a VF hardware address Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 059/293] EDAC/sysfs: Fix memory leak when creating a csrow object Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 060/293] ipsec: select crypto ciphers for xfrm_algo Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 061/293] ipvs: defer hook registration to avoid leaks Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 062/293] media: s5p-mfc: Make additional clocks optional Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 063/293] media: i2c: fix warning same module names Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 064/293] ntp: Limit TAI-UTC offset Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 065/293] timer_list: Guard procfs specific code Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 066/293] acpi/arm64: ignore 5.1 FADTs that are reported as 5.0 Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 067/293] media: coda: fix mpeg2 sequence number handling Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 068/293] media: coda: fix last buffer handling in V4L2_ENC_CMD_STOP Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 069/293] media: coda: increment sequence offset for the last returned frame Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 070/293] media: vimc: cap: check v4l2_fill_pixfmt return value Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 071/293] media: hdpvr: fix locking and a missing msleep Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 072/293] rtlwifi: rtl8192cu: fix error handle when usb probe failed Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 073/293] mt7601u: do not schedule rx_tasklet when the device has been disconnected Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 074/293] x86/build: Add set -e to mkcapflags.sh to delete broken capflags.c Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 075/293] mt7601u: fix possible memory leak when the device is disconnected Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 076/293] ipvs: fix tinfo memory leak in start_sync_thread Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 077/293] ath10k: add missing error handling Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 078/293] ath10k: fix PCIE device wake up failed Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 079/293] perf tools: Increase MAX_NR_CPUS and MAX_CACHES Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 080/293] libata: dont request sense data on !ZAC ATA devices Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 081/293] clocksource/drivers/exynos_mct: Increase priority over ARM arch timer Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 082/293] rslib: Fix decoding of shortened codes Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 083/293] rslib: Fix handling of of caller provided syndrome Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 084/293] ixgbe: Check DDM existence in transceiver before access Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 085/293] crypto: serpent - mark __serpent_setkey_sbox noinline Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 086/293] crypto: asymmetric_keys - select CRYPTO_HASH where needed Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 087/293] EDAC: Fix global-out-of-bounds write when setting edac_mc_poll_msec Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 088/293] bcache: check c->gc_thread by IS_ERR_OR_NULL in cache_set_flush() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 089/293] net: hns3: fix a -Wformat-nonliteral compile warning Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 090/293] net: hns3: add some error checking in hclge_tm module Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 091/293] ath10k: destroy sdio workqueue while remove sdio module Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 092/293] iwlwifi: mvm: Drop large non sta frames Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 093/293] perf stat: Make metric event lookup more robust Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 094/293] net: usb: asix: init MAC address buffers Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 095/293] gpiolib: Fix references to gpiod_[gs]et_*value_cansleep() variants Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 096/293] Bluetooth: hci_bcsp: Fix memory leak in rx_skb Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 097/293] Bluetooth: 6lowpan: search for destination address in all peers Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 098/293] Bluetooth: Check state in l2cap_disconnect_rsp Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 099/293] gtp: add missing gtp_encap_disable_sock() in gtp_encap_enable() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 100/293] Bluetooth: validate BLE connection interval updates Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 101/293] gtp: fix suspicious RCU usage Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 102/293] gtp: fix Illegal context switch in RCU read-side critical section Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 103/293] gtp: fix use-after-free in gtp_encap_destroy() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 104/293] gtp: fix use-after-free in gtp_newlink() Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 105/293] net: mvmdio: defer probe of orion-mdio if a clock is not ready Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 106/293] iavf: fix dereference of null rx_buffer pointer Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 107/293] floppy: fix div-by-zero in setup_format_params Greg Kroah-Hartman
2019-07-29 19:19 ` [PATCH 4.14 108/293] floppy: fix out-of-bounds read in next_valid_format Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 109/293] floppy: fix invalid pointer dereference in drive_name Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 110/293] floppy: fix out-of-bounds read in copy_buffer Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 111/293] xen: let alloc_xenballooned_pages() fail if not enough memory free Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 112/293] scsi: NCR5380: Reduce goto statements in NCR5380_select() Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 113/293] scsi: NCR5380: Always re-enable reselection interrupt Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 114/293] Revert "scsi: ncr5380: Increase register polling limit" Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 115/293] scsi: core: Fix race on creating sense cache Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 116/293] scsi: megaraid_sas: Fix calculation of target ID Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 117/293] scsi: mac_scsi: Increase PIO/PDMA transfer length threshold Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 118/293] scsi: mac_scsi: Fix pseudo DMA implementation, take 2 Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 119/293] crypto: ghash - fix unaligned memory access in ghash_setkey() Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 120/293] crypto: ccp - Validate the the error value used to index error messages Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 121/293] crypto: arm64/sha1-ce - correct digest for empty data in finup Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 122/293] crypto: arm64/sha2-ce " Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 123/293] crypto: chacha20poly1305 - fix atomic sleep when using async algorithm Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 124/293] crypto: ccp - memset structure fields to zero before reuse Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 125/293] crypto: ccp/gcm - use const time tag comparison Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 126/293] crypto: crypto4xx - fix a potential double free in ppc4xx_trng_probe Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 127/293] Input: gtco - bounds check collection indent level Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 128/293] Input: alps - dont handle ALPS cs19 trackpoint-only device Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 129/293] Input: synaptics - whitelist Lenovo T580 SMBus intertouch Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 130/293] Input: alps - fix a mismatch between a condition check and its comment Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 131/293] regulator: s2mps11: Fix buck7 and buck8 wrong voltages Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 132/293] arm64: tegra: Update Jetson TX1 GPU regulator timings Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 133/293] iwlwifi: pcie: dont service an interrupt that was masked Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 134/293] iwlwifi: pcie: fix ALIVE interrupt handling for gen2 devices w/o MSI-X Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 135/293] NFSv4: Handle the special Linux file open access mode Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 136/293] pnfs/flexfiles: Fix PTR_ERR() dereferences in ff_layout_track_ds_error Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 137/293] lib/scatterlist: Fix mapping iterator when sg->offset is greater than PAGE_SIZE Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 138/293] ASoC: dapm: Adapt for debugfs API change Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 139/293] ALSA: seq: Break too long mutex context in the write loop Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 140/293] ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 141/293] media: v4l2: Test type instead of cfg->type in v4l2_ctrl_new_custom() Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 142/293] media: coda: Remove unbalanced and unneeded mutex unlock Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 143/293] KVM: x86/vPMU: refine kvm_pmu err msg when event creation failed Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 144/293] arm64: tegra: Fix AGIC register range Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 145/293] fs/proc/proc_sysctl.c: fix the default values of i_uid/i_gid on /proc/sys inodes Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 146/293] drm/nouveau/i2c: Enable i2c pads & busses during preinit Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 147/293] padata: use smp_mb in padata_reorder to avoid orphaned padata jobs Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 148/293] dm zoned: fix zone state management race Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 149/293] xen/events: fix binding user event channels to cpus Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 150/293] 9p/xen: Add cleanup path in p9_trans_xen_init Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 151/293] 9p/virtio: Add cleanup path in p9_virtio_init Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 152/293] x86/boot: Fix memory leak in default_get_smp_config() Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 153/293] perf/x86/amd/uncore: Do not set ThreadMask and SliceMask for non-L3 PMCs Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 154/293] perf/x86/amd/uncore: Set the thread mask for F17h L3 PMCs Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 155/293] intel_th: pci: Add Ice Lake NNPI support Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 156/293] PCI: Do not poll for PME if the device is in D3cold Greg Kroah-Hartman
2019-07-29 19:20 ` Greg Kroah-Hartman [this message]
2019-07-29 19:20 ` [PATCH 4.14 158/293] Btrfs: fix fsync not persisting dentry deletions due to inode evictions Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 159/293] Btrfs: add missing inode version, ctime and mtime updates when punching hole Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 160/293] HID: wacom: generic: only switch the mode on devices with LEDs Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 161/293] HID: wacom: correct touch resolution x/y typo Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 162/293] libnvdimm/pfn: fix fsdax-mode namespace info-block zero-fields Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 163/293] coda: pass the host file in vma->vm_file on mmap Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 164/293] gpu: ipu-v3: ipu-ic: Fix saturation bit offset in TPMEM Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 165/293] PCI: hv: Fix a use-after-free bug in hv_eject_device_work() Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 166/293] crypto: caam - limit output IV to CBC to work around CTR mode DMA issue Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 167/293] parisc: Ensure userspace privilege for ptraced processes in regset functions Greg Kroah-Hartman
2019-07-29 19:20 ` [PATCH 4.14 168/293] parisc: Fix kernel panic due invalid values in IAOQ0 or IAOQ1 Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 169/293] powerpc/32s: fix suspend/resume when IBATs 4-7 are used Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 170/293] powerpc/watchpoint: Restore NV GPRs while returning from exception Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 171/293] eCryptfs: fix a couple type promotion bugs Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 172/293] intel_th: msu: Fix single mode with disabled IOMMU Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 173/293] Bluetooth: Add SMP workaround Microsoft Surface Precision Mouse bug Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 174/293] usb: Handle USB3 remote wakeup for LPM enabled devices correctly Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 175/293] net: mvmdio: allow up to four clocks to be specified for orion-mdio Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 176/293] dt-bindings: allow up to four clocks " Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 177/293] dm bufio: fix deadlock with loop device Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 178/293] compiler.h, kasan: Avoid duplicating __read_once_size_nocheck() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 179/293] compiler.h: Add read_word_at_a_time() function Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 180/293] lib/strscpy: Shut up KASAN false-positives in strscpy() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 181/293] bnx2x: Prevent load reordering in tx completion processing Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 182/293] bnx2x: Prevent ptp_task to be rescheduled indefinitely Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 183/293] caif-hsi: fix possible deadlock in cfhsi_exit_module() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 184/293] igmp: fix memory leak in igmpv3_del_delrec() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 185/293] ipv4: dont set IPv6 only flags to IPv4 addresses Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 186/293] net: bcmgenet: use promisc for unsupported filters Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 187/293] net: dsa: mv88e6xxx: wait after reset deactivation Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 188/293] net: neigh: fix multiple neigh timer scheduling Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 189/293] net: openvswitch: fix csum updates for MPLS actions Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 190/293] nfc: fix potential illegal memory access Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 191/293] rxrpc: Fix send on a connected, but unbound socket Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 192/293] sky2: Disable MSI on ASUS P6T Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 193/293] vrf: make sure skb->data contains ip header to make routing Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 194/293] macsec: fix use-after-free of skb during RX Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 195/293] macsec: fix checksumming after decryption Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 196/293] netrom: fix a memory leak in nr_rx_frame() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 197/293] netrom: hold sock when setting skb->destructor Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 198/293] bonding: validate ip header before check IPPROTO_IGMP Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 199/293] net: make skb_dst_force return true when dst is refcounted Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 200/293] tcp: fix tcp_set_congestion_control() use from bpf hook Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 201/293] tcp: Reset bytes_acked and bytes_received when disconnecting Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 202/293] net: bridge: mcast: fix stale nsrcs pointer in igmp3/mld2 report handling Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 203/293] net: bridge: mcast: fix stale ipv6 hdr pointer when handling v6 query Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 204/293] net: bridge: stp: dont cache eth dest pointer before skb pull Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 205/293] dma-buf: balance refcount inbalance Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 206/293] dma-buf: Discard old fence_excl on retrying get_fences_rcu for realloc Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 207/293] MIPS: lb60: Fix pin mappings Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 208/293] ext4: dont allow any modifications to an immutable file Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 209/293] ext4: enforce the immutable flag on open files Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 210/293] mm: add filemap_fdatawait_range_keep_errors() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 211/293] jbd2: introduce jbd2_inode dirty range scoping Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 212/293] ext4: use " Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 213/293] ext4: allow directory holes Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 214/293] mm: vmscan: scan anonymous pages on file refaults Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 215/293] perf/events/amd/uncore: Fix amd_uncore_llc ID to use pre-defined cpu_llc_id Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 216/293] NFSv4: Fix open create exclusive when the server reboots Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 217/293] nfsd: increase DRC cache limit Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 218/293] nfsd: give out fewer session slots as limit approaches Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 219/293] nfsd: fix performance-limiting session calculation Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 220/293] nfsd: Fix overflow causing non-working mounts on 1 TB machines Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 221/293] hvsock: fix epollout hang from race condition Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 222/293] drm/panel: simple: Fix panel_simple_dsi_probe Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 223/293] usb: core: hub: Disable hub-initiated U1/U2 Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 224/293] tty: max310x: Fix invalid baudrate divisors calculator Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 225/293] pinctrl: rockchip: fix leaked of_node references Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 226/293] tty: serial: cpm_uart - fix init when SMC is relocated Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 227/293] drm/edid: Fix a missing-check bug in drm_load_edid_firmware() Greg Kroah-Hartman
2019-07-29 19:21 ` [PATCH 4.14 228/293] PCI: Return error if cannot probe VF Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 229/293] drm/bridge: tc358767: read display_props in get_modes() Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 230/293] drm/bridge: sii902x: pixel clock unit is 10kHz instead of 1kHz Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 231/293] drm/crc-debugfs: User irqsafe spinlock in drm_crtc_add_crc_entry Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 232/293] memstick: Fix error cleanup path of memstick_init Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 233/293] tty/serial: digicolor: Fix digicolor-usart already registered warning Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 234/293] tty: serial: msm_serial: avoid system lockup condition Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 235/293] serial: 8250: Fix TX interrupt handling condition Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 236/293] drm/virtio: Add memory barriers for capset cache Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 237/293] phy: renesas: rcar-gen2: Fix memory leak at error paths Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 238/293] powerpc/pseries/mobility: prevent cpu hotplug during DT update Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 239/293] drm/rockchip: Properly adjust to a true clock in adjusted_mode Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 240/293] tty: serial_core: Set port active bit in uart_port_activate Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 241/293] usb: gadget: Zero ffs_io_data Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 242/293] powerpc/pci/of: Fix OF flags parsing for 64bit BARs Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 243/293] drm/msm: Depopulate platform on probe failure Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 244/293] serial: mctrl_gpio: Check if GPIO property exisits before requesting it Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 245/293] PCI: sysfs: Ignore lockdep for remove attribute Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 246/293] kbuild: Add -Werror=unknown-warning-option to CLANG_FLAGS Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 247/293] PCI: xilinx-nwl: Fix Multi MSI data programming Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 248/293] iio: iio-utils: Fix possible incorrect mask calculation Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 249/293] powerpc/xmon: Fix disabling tracing while in xmon Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 250/293] recordmcount: Fix spurious mcount entries on powerpc Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 251/293] mfd: core: Set fwnode for created devices Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 252/293] mfd: arizona: Fix undefined behavior Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 253/293] mfd: hi655x-pmic: Fix missing return value check for devm_regmap_init_mmio_clk Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 254/293] um: Silence lockdep complaint about mmap_sem Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 255/293] powerpc/4xx/uic: clear pending interrupt after irq type/pol change Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 256/293] RDMA/i40iw: Set queue pair state when being queried Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 257/293] serial: sh-sci: Terminate TX DMA during buffer flushing Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 258/293] serial: sh-sci: Fix TX DMA buffer flushing and workqueue races Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 259/293] kallsyms: exclude kasan local symbols on s390 Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 260/293] perf test mmap-thread-lookup: Initialize variable to suppress memory sanitizer warning Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 261/293] perf session: Fix potential NULL pointer dereference found by the smatch tool Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 262/293] perf annotate: Fix dereferencing freed memory " Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 263/293] RDMA/rxe: Fill in wc byte_len with IB_WC_RECV_RDMA_WITH_IMM Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 264/293] PCI: dwc: pci-dra7xx: Fix compilation when !CONFIG_GPIOLIB Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 265/293] powerpc/boot: add {get, put}_unaligned_be32 to xz_config.h Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 266/293] f2fs: avoid out-of-range memory access Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 267/293] mailbox: handle failed named mailbox channel request Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 268/293] powerpc/eeh: Handle hugepages in ioremap space Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 269/293] block/bio-integrity: fix a memory leak bug Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 270/293] sh: prevent warnings when using iounmap Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 271/293] mm/kmemleak.c: fix check for softirq context Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 272/293] 9p: pass the correct prototype to read_cache_page Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 273/293] mm/gup.c: mark undo_dev_pagemap as __maybe_unused Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 274/293] mm/gup.c: remove some BUG_ONs from get_gate_page() Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 275/293] mm/mmu_notifier: use hlist_add_head_rcu() Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 276/293] locking/lockdep: Fix lock used or unused stats error Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 277/293] locking/lockdep: Hide unused class variable Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 278/293] drm/crc: Only report a single overflow when a CRC fd is opened Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 279/293] drm/crc-debugfs: Also sprinkle irqrestore over early exits Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 280/293] usb: wusbcore: fix unbalanced get/put cluster_id Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 281/293] usb: pci-quirks: Correct AMD PLL quirk detection Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 282/293] KVM: nVMX: do not use dangling shadow VMCS after guest reset Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 283/293] btrfs: inode: Dont compress if NODATASUM or NODATACOW set Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 284/293] x86/sysfb_efi: Add quirks for some devices with swapped width and height Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 285/293] x86/speculation/mds: Apply more accurate check on hypervisor platform Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 286/293] binder: prevent transactions to context manager from its own process Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 287/293] fpga-manager: altera-ps-spi: Fix build error Greg Kroah-Hartman
2019-07-29 19:22 ` [PATCH 4.14 288/293] hpet: Fix division by zero in hpet_time_div() Greg Kroah-Hartman
2019-07-29 19:23 ` [PATCH 4.14 289/293] ALSA: line6: Fix wrong altsetting for LINE6_PODHD500_1 Greg Kroah-Hartman
2019-07-29 19:23 ` [PATCH 4.14 290/293] ALSA: hda - Add a conexant codec entry to let mute led work Greg Kroah-Hartman
2019-07-29 19:23 ` [PATCH 4.14 291/293] powerpc/xive: Fix loop exit-condition in xive_find_target_in_mask() Greg Kroah-Hartman
2019-07-29 19:23 ` [PATCH 4.14 292/293] powerpc/tm: Fix oops on sigreturn on systems without TM Greg Kroah-Hartman
2019-07-29 19:23 ` [PATCH 4.14 293/293] access: avoid the RCU grace period for the temporary subjective credentials Greg Kroah-Hartman
2019-07-30  3:34 ` [PATCH 4.14 000/293] 4.14.135-stable review kernelci.org bot
2019-07-30  7:13 ` Naresh Kamboju
2019-07-30 13:59 ` shuah
2019-07-30 18:42 ` Guenter Roeck
2019-07-31  5:31 ` Kelsey Skunberg
2019-07-31  9:35 ` Jon Hunter

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=20190729190836.588994383@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=dsterba@suse.com \
    --cc=fdmanana@suse.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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