Merge 4.14.153 into android-4.14-q
authorGreg Kroah-Hartman <gregkh@google.com>
Sun, 10 Nov 2019 15:05:35 +0000 (16:05 +0100)
committerGreg Kroah-Hartman <gregkh@google.com>
Sun, 10 Nov 2019 15:05:35 +0000 (16:05 +0100)
Changes in 4.14.153
arm64: dts: Fix gpio to pinmux mapping
regulator: ti-abb: Fix timeout in ti_abb_wait_txdone/ti_abb_clear_all_txdone
regulator: pfuze100-regulator: Variable "val" in pfuze100_regulator_probe() could be uninitialized
ASoC: wm_adsp: Don't generate kcontrols without READ flags
ASoc: rockchip: i2s: Fix RPM imbalance
ARM: dts: logicpd-torpedo-som: Remove twl_keypad
pinctrl: ns2: Fix off by one bugs in ns2_pinmux_enable()
ARM: mm: fix alignment handler faults under memory pressure
scsi: scsi_dh_alua: handle RTPG sense code correctly during state transitions
scsi: sni_53c710: fix compilation error
scsi: fix kconfig dependency warning related to 53C700_LE_ON_BE
ARM: dts: imx7s: Correct GPT's ipg clock source
perf c2c: Fix memory leak in build_cl_output()
perf kmem: Fix memory leak in compact_gfp_flags()
ARM: davinci: dm365: Fix McBSP dma_slave_map entry
scsi: target: core: Do not overwrite CDB byte 1
ARM: 8926/1: v7m: remove register save to stack before svc
of: unittest: fix memory leak in unittest_data_add
MIPS: bmips: mark exception vectors as char arrays
i2c: stm32f7: remove warning when compiling with W=1
cifs: Fix cifsInodeInfo lock_sem deadlock when reconnect occurs
nbd: handle racing with error'ed out commands
cxgb4: fix panic when attaching to ULD fail
dccp: do not leak jiffies on the wire
net: annotate accesses to sk->sk_incoming_cpu
net: annotate lockless accesses to sk->sk_napi_id
net: dsa: bcm_sf2: Fix IMP setup for port different than 8
net: ethernet: ftgmac100: Fix DMA coherency issue with SW checksum
net: fix sk_page_frag() recursion from memory reclaim
net: hisilicon: Fix ping latency when deal with high throughput
net/mlx4_core: Dynamically set guaranteed amount of counters per VF
net: Zeroing the structure ethtool_wolinfo in ethtool_get_wol()
selftests: net: reuseport_dualstack: fix uninitalized parameter
udp: fix data-race in udp_set_dev_scratch()
net: add READ_ONCE() annotation in __skb_wait_for_more_packets()
net/mlx5e: Fix handling of compressed CQEs in case of low NAPI budget
net: dsa: b53: Do not clear existing mirrored port mask
net: usb: lan78xx: Connect PHY before registering MAC
r8152: add device id for Lenovo ThinkPad USB-C Dock Gen 2
net: dsa: fix switch tree list
net: bcmgenet: reset 40nm EPHY on energy detect
net: add skb_queue_empty_lockless()
udp: use skb_queue_empty_lockless()
net: use skb_queue_empty_lockless() in poll() handlers
net: use skb_queue_empty_lockless() in busy poll contexts
vxlan: check tun_info options_len properly
erspan: fix the tun_info options_len check for erspan
inet: stop leaking jiffies on the wire
net/flow_dissector: switch to siphash
dmaengine: qcom: bam_dma: Fix resource leak
sched/wake_q: Fix wakeup ordering for wake_q
kbuild: use -fmacro-prefix-map to make __FILE__ a relative path
kbuild: add -fcf-protection=none when using retpoline flags
platform/x86: pmc_atom: Add Siemens SIMATIC IPC227E to critclk_systems DMI table
iio: adc: stm32-adc: move registers definitions
iio: adc: stm32-adc: fix a race when using several adcs with dma and irq
powerpc/mm: Fixup tlbie vs store ordering issue on POWER9
powerpc/book3s64/mm: Don't do tlbie fixup for some hardware revisions
powerpc/book3s64/radix: Rename CPU_FTR_P9_TLBIE_BUG feature flag
powerpc/mm: Fixup tlbie vs mtpidr/mtlpidr ordering issue on POWER9
selftests/powerpc: Add test case for tlbie vs mtpidr ordering issue
selftests/powerpc: Fix compile error on tlbie_test due to newer gcc
Linux 4.14.153

Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
1  2 
Makefile
kernel/sched/core.c
net/bluetooth/af_bluetooth.c

diff --cc Makefile
Simple merge
index c4d898ecd69553bba37f5ee59a56e52d00b36313,bbf8b32fc69ecf2dce58ed7d45228cb7692905cb..449e943e856eb950398b0d1d6a306b57c1437b5f
@@@ -433,14 -432,13 +433,15 @@@ void wake_q_add(struct wake_q_head *hea
         * its already queued (either by us or someone else) and will get the
         * wakeup due to that.
         *
-        * This cmpxchg() implies a full barrier, which pairs with the write
-        * barrier implied by the wakeup in wake_up_q().
+        * In order to ensure that a pending wakeup will observe our pending
+        * state, even in the failed case, an explicit smp_mb() must be used.
         */
-       if (cmpxchg(&node->next, NULL, WAKE_Q_TAIL))
+       smp_mb__before_atomic();
+       if (cmpxchg_relaxed(&node->next, NULL, WAKE_Q_TAIL))
                return;
  
 +      head->count++;
 +
        get_task_struct(task);
  
        /*
Simple merge