From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Thomas Gleixner <tglx@linutronix.de>,
Finn Thain <fthain@telegraphics.com.au>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.14 343/343] m68k: Call timer_interrupt() with interrupts disabled
Date: Fri, 24 Jan 2020 10:32:41 +0100 [thread overview]
Message-ID: <20200124093004.995466377@linuxfoundation.org> (raw)
In-Reply-To: <20200124092919.490687572@linuxfoundation.org>
From: Finn Thain <fthain@telegraphics.com.au>
[ Upstream commit 1efdd4bd254311498123a15fa0acd565f454da97 ]
Some platforms execute their timer handler with the interrupt priority
level set below 6. That means the handler could be interrupted by another
driver and this could lead to re-entry of the timer core.
Avoid this by use of local_irq_save/restore for timer interrupt dispatch.
This provides mutual exclusion around the timer interrupt flag access
which is needed later in this series for the clocksource conversion.
Reported-by: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/alpine.DEB.2.21.1811131407120.2697@nanos.tec.linutronix.de
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
arch/m68k/amiga/cia.c | 9 +++++++++
arch/m68k/atari/ataints.c | 4 ++--
arch/m68k/atari/time.c | 15 ++++++++++++++-
arch/m68k/bvme6000/config.c | 20 ++++++++++----------
arch/m68k/hp300/time.c | 10 ++++++++--
arch/m68k/mac/via.c | 17 +++++++++++++++++
arch/m68k/mvme147/config.c | 18 ++++++++++--------
arch/m68k/mvme16x/config.c | 21 +++++++++++----------
arch/m68k/q40/q40ints.c | 19 +++++++++++--------
arch/m68k/sun3/sun3ints.c | 3 +++
arch/m68k/sun3x/time.c | 16 ++++++++++------
11 files changed, 105 insertions(+), 47 deletions(-)
diff --git a/arch/m68k/amiga/cia.c b/arch/m68k/amiga/cia.c
index 2081b8cd5591c..b9aee983e6f4c 100644
--- a/arch/m68k/amiga/cia.c
+++ b/arch/m68k/amiga/cia.c
@@ -88,10 +88,19 @@ static irqreturn_t cia_handler(int irq, void *dev_id)
struct ciabase *base = dev_id;
int mach_irq;
unsigned char ints;
+ unsigned long flags;
+ /* Interrupts get disabled while the timer irq flag is cleared and
+ * the timer interrupt serviced.
+ */
mach_irq = base->cia_irq;
+ local_irq_save(flags);
ints = cia_set_irq(base, CIA_ICR_ALL);
amiga_custom.intreq = base->int_mask;
+ if (ints & 1)
+ generic_handle_irq(mach_irq);
+ local_irq_restore(flags);
+ mach_irq++, ints >>= 1;
for (; ints; mach_irq++, ints >>= 1) {
if (ints & 1)
generic_handle_irq(mach_irq);
diff --git a/arch/m68k/atari/ataints.c b/arch/m68k/atari/ataints.c
index 3d2b63bedf058..56f02ea2c248d 100644
--- a/arch/m68k/atari/ataints.c
+++ b/arch/m68k/atari/ataints.c
@@ -142,7 +142,7 @@ struct mfptimerbase {
.name = "MFP Timer D"
};
-static irqreturn_t mfptimer_handler(int irq, void *dev_id)
+static irqreturn_t mfp_timer_d_handler(int irq, void *dev_id)
{
struct mfptimerbase *base = dev_id;
int mach_irq;
@@ -344,7 +344,7 @@ void __init atari_init_IRQ(void)
st_mfp.tim_ct_cd = (st_mfp.tim_ct_cd & 0xf0) | 0x6;
/* request timer D dispatch handler */
- if (request_irq(IRQ_MFP_TIMD, mfptimer_handler, IRQF_SHARED,
+ if (request_irq(IRQ_MFP_TIMD, mfp_timer_d_handler, IRQF_SHARED,
stmfp_base.name, &stmfp_base))
pr_err("Couldn't register %s interrupt\n", stmfp_base.name);
diff --git a/arch/m68k/atari/time.c b/arch/m68k/atari/time.c
index c549b48174ec8..972181c1fe4b7 100644
--- a/arch/m68k/atari/time.c
+++ b/arch/m68k/atari/time.c
@@ -24,6 +24,18 @@
DEFINE_SPINLOCK(rtc_lock);
EXPORT_SYMBOL_GPL(rtc_lock);
+static irqreturn_t mfp_timer_c_handler(int irq, void *dev_id)
+{
+ irq_handler_t timer_routine = dev_id;
+ unsigned long flags;
+
+ local_irq_save(flags);
+ timer_routine(0, NULL);
+ local_irq_restore(flags);
+
+ return IRQ_HANDLED;
+}
+
void __init
atari_sched_init(irq_handler_t timer_routine)
{
@@ -32,7 +44,8 @@ atari_sched_init(irq_handler_t timer_routine)
/* start timer C, div = 1:100 */
st_mfp.tim_ct_cd = (st_mfp.tim_ct_cd & 15) | 0x60;
/* install interrupt service routine for MFP Timer C */
- if (request_irq(IRQ_MFP_TIMC, timer_routine, 0, "timer", timer_routine))
+ if (request_irq(IRQ_MFP_TIMC, mfp_timer_c_handler, 0, "timer",
+ timer_routine))
pr_err("Couldn't register timer interrupt\n");
}
diff --git a/arch/m68k/bvme6000/config.c b/arch/m68k/bvme6000/config.c
index 2cfff47650407..0e602c32b246f 100644
--- a/arch/m68k/bvme6000/config.c
+++ b/arch/m68k/bvme6000/config.c
@@ -45,11 +45,6 @@ extern int bvme6000_set_clock_mmss (unsigned long);
extern void bvme6000_reset (void);
void bvme6000_set_vectors (void);
-/* Save tick handler routine pointer, will point to xtime_update() in
- * kernel/timer/timekeeping.c, called via bvme6000_process_int() */
-
-static irq_handler_t tick_handler;
-
int __init bvme6000_parse_bootinfo(const struct bi_record *bi)
{
@@ -159,12 +154,18 @@ irqreturn_t bvme6000_abort_int (int irq, void *dev_id)
static irqreturn_t bvme6000_timer_int (int irq, void *dev_id)
{
+ irq_handler_t timer_routine = dev_id;
+ unsigned long flags;
volatile RtcPtr_t rtc = (RtcPtr_t)BVME_RTC_BASE;
- unsigned char msr = rtc->msr & 0xc0;
+ unsigned char msr;
+ local_irq_save(flags);
+ msr = rtc->msr & 0xc0;
rtc->msr = msr | 0x20; /* Ack the interrupt */
+ timer_routine(0, NULL);
+ local_irq_restore(flags);
- return tick_handler(irq, dev_id);
+ return IRQ_HANDLED;
}
/*
@@ -183,9 +184,8 @@ void bvme6000_sched_init (irq_handler_t timer_routine)
rtc->msr = 0; /* Ensure timer registers accessible */
- tick_handler = timer_routine;
- if (request_irq(BVME_IRQ_RTC, bvme6000_timer_int, 0,
- "timer", bvme6000_timer_int))
+ if (request_irq(BVME_IRQ_RTC, bvme6000_timer_int, 0, "timer",
+ timer_routine))
panic ("Couldn't register timer int");
rtc->t1cr_omr = 0x04; /* Mode 2, ext clk */
diff --git a/arch/m68k/hp300/time.c b/arch/m68k/hp300/time.c
index 289d928a46cbe..d30b03ea93a27 100644
--- a/arch/m68k/hp300/time.c
+++ b/arch/m68k/hp300/time.c
@@ -38,13 +38,19 @@
static irqreturn_t hp300_tick(int irq, void *dev_id)
{
+ irq_handler_t timer_routine = dev_id;
+ unsigned long flags;
unsigned long tmp;
- irq_handler_t vector = dev_id;
+
+ local_irq_save(flags);
in_8(CLOCKBASE + CLKSR);
asm volatile ("movpw %1@(5),%0" : "=d" (tmp) : "a" (CLOCKBASE));
+ timer_routine(0, NULL);
+ local_irq_restore(flags);
+
/* Turn off the network and SCSI leds */
blinken_leds(0, 0xe0);
- return vector(irq, NULL);
+ return IRQ_HANDLED;
}
u32 hp300_gettimeoffset(void)
diff --git a/arch/m68k/mac/via.c b/arch/m68k/mac/via.c
index 7334245abf26f..863806e6775a8 100644
--- a/arch/m68k/mac/via.c
+++ b/arch/m68k/mac/via.c
@@ -398,6 +398,8 @@ void via_nubus_irq_shutdown(int irq)
* via6522.c :-), disable/pending masks added.
*/
+#define VIA_TIMER_1_INT BIT(6)
+
void via1_irq(struct irq_desc *desc)
{
int irq_num;
@@ -407,6 +409,21 @@ void via1_irq(struct irq_desc *desc)
if (!events)
return;
+ irq_num = IRQ_MAC_TIMER_1;
+ irq_bit = VIA_TIMER_1_INT;
+ if (events & irq_bit) {
+ unsigned long flags;
+
+ local_irq_save(flags);
+ via1[vIFR] = irq_bit;
+ generic_handle_irq(irq_num);
+ local_irq_restore(flags);
+
+ events &= ~irq_bit;
+ if (!events)
+ return;
+ }
+
irq_num = VIA1_SOURCE_BASE;
irq_bit = 1;
do {
diff --git a/arch/m68k/mvme147/config.c b/arch/m68k/mvme147/config.c
index 8778612d1f312..78ae803c833e1 100644
--- a/arch/m68k/mvme147/config.c
+++ b/arch/m68k/mvme147/config.c
@@ -46,11 +46,6 @@ extern void mvme147_reset (void);
static int bcd2int (unsigned char b);
-/* Save tick handler routine pointer, will point to xtime_update() in
- * kernel/time/timekeeping.c, called via mvme147_process_int() */
-
-irq_handler_t tick_handler;
-
int __init mvme147_parse_bootinfo(const struct bi_record *bi)
{
@@ -106,16 +101,23 @@ void __init config_mvme147(void)
static irqreturn_t mvme147_timer_int (int irq, void *dev_id)
{
+ irq_handler_t timer_routine = dev_id;
+ unsigned long flags;
+
+ local_irq_save(flags);
m147_pcc->t1_int_cntrl = PCC_TIMER_INT_CLR;
m147_pcc->t1_int_cntrl = PCC_INT_ENAB|PCC_LEVEL_TIMER1;
- return tick_handler(irq, dev_id);
+ timer_routine(0, NULL);
+ local_irq_restore(flags);
+
+ return IRQ_HANDLED;
}
void mvme147_sched_init (irq_handler_t timer_routine)
{
- tick_handler = timer_routine;
- if (request_irq(PCC_IRQ_TIMER1, mvme147_timer_int, 0, "timer 1", NULL))
+ if (request_irq(PCC_IRQ_TIMER1, mvme147_timer_int, 0, "timer 1",
+ timer_routine))
pr_err("Couldn't register timer interrupt\n");
/* Init the clock with a value */
diff --git a/arch/m68k/mvme16x/config.c b/arch/m68k/mvme16x/config.c
index 6fa06d4d16bf0..3116dd576bb3c 100644
--- a/arch/m68k/mvme16x/config.c
+++ b/arch/m68k/mvme16x/config.c
@@ -51,11 +51,6 @@ extern void mvme16x_reset (void);
int bcd2int (unsigned char b);
-/* Save tick handler routine pointer, will point to xtime_update() in
- * kernel/time/timekeeping.c, called via mvme16x_process_int() */
-
-static irq_handler_t tick_handler;
-
unsigned short mvme16x_config;
EXPORT_SYMBOL(mvme16x_config);
@@ -354,8 +349,15 @@ static irqreturn_t mvme16x_abort_int (int irq, void *dev_id)
static irqreturn_t mvme16x_timer_int (int irq, void *dev_id)
{
- *(volatile unsigned char *)0xfff4201b |= 8;
- return tick_handler(irq, dev_id);
+ irq_handler_t timer_routine = dev_id;
+ unsigned long flags;
+
+ local_irq_save(flags);
+ *(volatile unsigned char *)0xfff4201b |= 8;
+ timer_routine(0, NULL);
+ local_irq_restore(flags);
+
+ return IRQ_HANDLED;
}
void mvme16x_sched_init (irq_handler_t timer_routine)
@@ -363,14 +365,13 @@ void mvme16x_sched_init (irq_handler_t timer_routine)
uint16_t brdno = be16_to_cpu(mvme_bdid.brdno);
int irq;
- tick_handler = timer_routine;
/* Using PCCchip2 or MC2 chip tick timer 1 */
*(volatile unsigned long *)0xfff42008 = 0;
*(volatile unsigned long *)0xfff42004 = 10000; /* 10ms */
*(volatile unsigned char *)0xfff42017 |= 3;
*(volatile unsigned char *)0xfff4201b = 0x16;
- if (request_irq(MVME16x_IRQ_TIMER, mvme16x_timer_int, 0,
- "timer", mvme16x_timer_int))
+ if (request_irq(MVME16x_IRQ_TIMER, mvme16x_timer_int, 0, "timer",
+ timer_routine))
panic ("Couldn't register timer int");
if (brdno == 0x0162 || brdno == 0x172)
diff --git a/arch/m68k/q40/q40ints.c b/arch/m68k/q40/q40ints.c
index 3e7603202977e..1c696906c159f 100644
--- a/arch/m68k/q40/q40ints.c
+++ b/arch/m68k/q40/q40ints.c
@@ -127,10 +127,10 @@ void q40_mksound(unsigned int hz, unsigned int ticks)
sound_ticks = ticks << 1;
}
-static irq_handler_t q40_timer_routine;
-
-static irqreturn_t q40_timer_int (int irq, void * dev)
+static irqreturn_t q40_timer_int(int irq, void *dev_id)
{
+ irq_handler_t timer_routine = dev_id;
+
ql_ticks = ql_ticks ? 0 : 1;
if (sound_ticks) {
unsigned char sval=(sound_ticks & 1) ? 128-SVOL : 128+SVOL;
@@ -139,8 +139,13 @@ static irqreturn_t q40_timer_int (int irq, void * dev)
*DAC_RIGHT=sval;
}
- if (!ql_ticks)
- q40_timer_routine(irq, dev);
+ if (!ql_ticks) {
+ unsigned long flags;
+
+ local_irq_save(flags);
+ timer_routine(0, NULL);
+ local_irq_restore(flags);
+ }
return IRQ_HANDLED;
}
@@ -148,11 +153,9 @@ void q40_sched_init (irq_handler_t timer_routine)
{
int timer_irq;
- q40_timer_routine = timer_routine;
timer_irq = Q40_IRQ_FRAME;
- if (request_irq(timer_irq, q40_timer_int, 0,
- "timer", q40_timer_int))
+ if (request_irq(timer_irq, q40_timer_int, 0, "timer", timer_routine))
panic("Couldn't register timer int");
master_outb(-1, FRAME_CLEAR_REG);
diff --git a/arch/m68k/sun3/sun3ints.c b/arch/m68k/sun3/sun3ints.c
index 6bbca30c91884..a5824abb4a39c 100644
--- a/arch/m68k/sun3/sun3ints.c
+++ b/arch/m68k/sun3/sun3ints.c
@@ -61,8 +61,10 @@ static irqreturn_t sun3_int7(int irq, void *dev_id)
static irqreturn_t sun3_int5(int irq, void *dev_id)
{
+ unsigned long flags;
unsigned int cnt;
+ local_irq_save(flags);
#ifdef CONFIG_SUN3
intersil_clear();
#endif
@@ -76,6 +78,7 @@ static irqreturn_t sun3_int5(int irq, void *dev_id)
cnt = kstat_irqs_cpu(irq, 0);
if (!(cnt % 20))
sun3_leds(led_pattern[cnt % 160 / 20]);
+ local_irq_restore(flags);
return IRQ_HANDLED;
}
diff --git a/arch/m68k/sun3x/time.c b/arch/m68k/sun3x/time.c
index 7a2c53d9f779a..48b43903253e4 100644
--- a/arch/m68k/sun3x/time.c
+++ b/arch/m68k/sun3x/time.c
@@ -78,15 +78,19 @@ u32 sun3x_gettimeoffset(void)
}
#if 0
-static void sun3x_timer_tick(int irq, void *dev_id, struct pt_regs *regs)
+static irqreturn_t sun3x_timer_tick(int irq, void *dev_id)
{
- void (*vector)(int, void *, struct pt_regs *) = dev_id;
+ irq_handler_t timer_routine = dev_id;
+ unsigned long flags;
- /* Clear the pending interrupt - pulse the enable line low */
- disable_irq(5);
- enable_irq(5);
+ local_irq_save(flags);
+ /* Clear the pending interrupt - pulse the enable line low */
+ disable_irq(5);
+ enable_irq(5);
+ timer_routine(0, NULL);
+ local_irq_restore(flags);
- vector(irq, NULL, regs);
+ return IRQ_HANDLED;
}
#endif
--
2.20.1
next prev parent reply other threads:[~2020-01-24 9:37 UTC|newest]
Thread overview: 354+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-24 9:26 [PATCH 4.14 000/343] 4.14.168-stable review Greg Kroah-Hartman
2020-01-24 9:26 ` [PATCH 4.14 001/343] xfs: Sanity check flags of Q_XQUOTARM call Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 002/343] mfd: intel-lpss: Add default I2C device properties for Gemini Lake Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 003/343] powerpc/archrandom: fix arch_get_random_seed_int() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 004/343] tipc: fix wrong timeout input for tipc_wait_for_cond() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 005/343] mt7601u: fix bbp version check in mt7601u_wait_bbp_ready Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 006/343] crypto: sun4i-ss - fix big endian issues Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 007/343] leds: tlc591xx: update the maximum brightness Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 008/343] drm/sti: do not remove the drm_bridge that was never added Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 009/343] drm/virtio: fix bounds check in virtio_gpu_cmd_get_capset() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 010/343] ALSA: hda: fix unused variable warning Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 011/343] apparmor: dont try to replace stale label in ptrace access check Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 012/343] PCI: iproc: Remove PAXC slot check to allow VF support Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 013/343] drm/hisilicon: hibmc: Dont overwrite fb helper surface depth Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 014/343] IB/rxe: replace kvfree with vfree Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 015/343] IB/hfi1: Add mtu check for operational data VLs Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 016/343] regulator: fixed: Default enable high on DT regulators Greg Kroah-Hartman
2020-01-24 13:46 ` Linus Walleij
2020-01-24 17:36 ` Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 017/343] ALSA: usb-audio: update quirk for B&W PX to remove microphone Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 018/343] staging: comedi: ni_mio_common: protect register write overflow Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 019/343] pwm: lpss: Release runtime-pm reference from the drivers remove callback Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 020/343] powerpc/kgdb: add kgdb_arch_set/remove_breakpoint() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 021/343] drm/sun4i: hdmi: Fix double flag assignation Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 022/343] mlxsw: reg: QEEC: Add minimum shaper fields Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 023/343] NTB: ntb_hw_idt: replace IS_ERR_OR_NULL with regular NULL checks Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 024/343] pcrypt: use format specifier in kobject_add Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 025/343] exportfs: fix passing zero to ERR_PTR() warning Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 026/343] drm/dp_mst: Skip validating ports during destruction, just ref Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 027/343] net: phy: Fix not to call phy_resume() if PHY is not attached Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 028/343] IB/rxe: Fix incorrect cache cleanup in error flow Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 029/343] staging: bcm2835-camera: Abort probe if there is no camera Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 030/343] switchtec: Remove immediate status check after submitting MRPC command Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 031/343] pinctrl: sh-pfc: r8a7740: Add missing REF125CK pin to gether_gmii group Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 032/343] pinctrl: sh-pfc: r8a7740: Add missing LCD0 marks to lcd0_data24_1 group Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 033/343] pinctrl: sh-pfc: r8a7791: Remove bogus ctrl marks from qspi_data4_b group Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 034/343] pinctrl: sh-pfc: r8a7791: Remove bogus marks from vin1_b_data18 group Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 035/343] pinctrl: sh-pfc: sh73a0: Add missing TO pin to tpu4_to3 group Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 036/343] pinctrl: sh-pfc: r8a7794: Remove bogus IPSR9 field Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 037/343] pinctrl: sh-pfc: sh7734: Add missing IPSR11 field Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 038/343] pinctrl: sh-pfc: r8a77995: Remove bogus SEL_PWM[0-3]_3 configurations Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 039/343] pinctrl: sh-pfc: sh7269: Add missing PCIOR0 field Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 040/343] pinctrl: sh-pfc: sh7734: Remove bogus IPSR10 value Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 041/343] vxlan: changelink: Fix handling of default remotes Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 042/343] Input: nomadik-ske-keypad - fix a loop timeout test Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 043/343] clk: highbank: fix refcount leak in hb_clk_init() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 044/343] clk: qoriq: fix refcount leak in clockgen_init() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 045/343] clk: socfpga: fix refcount leak Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 046/343] clk: samsung: exynos4: fix refcount leak in exynos4_get_xom() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 047/343] clk: imx6q: fix refcount leak in imx6q_clocks_init() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 048/343] clk: imx6sx: fix refcount leak in imx6sx_clocks_init() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 049/343] clk: imx7d: fix refcount leak in imx7d_clocks_init() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 050/343] clk: vf610: fix refcount leak in vf610_clocks_init() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 051/343] clk: armada-370: fix refcount leak in a370_clk_init() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 052/343] clk: kirkwood: fix refcount leak in kirkwood_clk_init() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 053/343] clk: armada-xp: fix refcount leak in axp_clk_init() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 054/343] clk: mv98dx3236: fix refcount leak in mv98dx3236_clk_init() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 055/343] clk: dove: fix refcount leak in dove_clk_init() Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 056/343] MIPS: BCM63XX: drop unused and broken DSP platform device Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 057/343] IB/usnic: Fix out of bounds index check in query pkey Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 058/343] RDMA/ocrdma: " Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 059/343] RDMA/qedr: " Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 060/343] drm/shmob: Fix return value check in shmob_drm_probe Greg Kroah-Hartman
2020-01-24 9:27 ` [PATCH 4.14 061/343] arm64: dts: apq8016-sbc: Increase load on l11 for SDCARD Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 062/343] spi: cadence: Correct initialisation of runtime PM Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 063/343] RDMA/iw_cxgb4: Fix the unchecked ep dereference Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 064/343] drm/etnaviv: NULL vs IS_ERR() buf in etnaviv_core_dump() Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 065/343] media: s5p-jpeg: Correct step and max values for V4L2_CID_JPEG_RESTART_INTERVAL Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 066/343] kbuild: mark prepare0 as PHONY to fix external module build Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 067/343] crypto: brcm - Fix some set-but-not-used warning Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 068/343] crypto: tgr192 - fix unaligned memory access Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 069/343] ASoC: imx-sgtl5000: put of nodes if finding codec fails Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 070/343] IB/iser: Pass the correct number of entries for dma mapped SGL Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 071/343] rtc: cmos: ignore bogus century byte Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 072/343] spi/topcliff_pch: Fix potential NULL dereference on allocation error Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 073/343] clk: sunxi-ng: sun8i-a23: Enable PLL-MIPI LDOs when ungating it Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 074/343] iwlwifi: mvm: avoid possible access out of array Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 075/343] net/mlx5: Take lock with IRQs disabled to avoid deadlock Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 076/343] iwlwifi: mvm: fix A-MPDU reference assignment Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 077/343] tty: ipwireless: Fix potential NULL pointer dereference Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 078/343] driver: uio: fix possible memory leak in __uio_register_device Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 079/343] driver: uio: fix possible use-after-free " Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 080/343] crypto: crypto4xx - Fix wrong ppc4xx_trng_probe()/ppc4xx_trng_remove() arguments Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 081/343] driver core: Do not resume suppliers under device_links_write_lock() Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 082/343] ARM: dts: lpc32xx: add required clocks property to keypad device node Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 083/343] ARM: dts: lpc32xx: reparent keypad controller to SIC1 Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 084/343] ARM: dts: lpc32xx: fix ARM PrimeCell LCD controller variant Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 085/343] ARM: dts: lpc32xx: fix ARM PrimeCell LCD controller clocks property Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 086/343] ARM: dts: lpc32xx: phy3250: fix SD card regulator voltage Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 087/343] iwlwifi: mvm: fix RSS config command Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 088/343] staging: most: cdev: add missing check for cdev_add failure Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 089/343] rtc: ds1672: fix unintended sign extension Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 090/343] thermal: mediatek: fix register index error Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 091/343] net: phy: fixed_phy: Fix fixed_phy not checking GPIO Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 092/343] rtc: ds1307: rx8130: Fix alarm handling Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 093/343] rtc: 88pm860x: fix unintended sign extension Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 094/343] rtc: 88pm80x: " Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 095/343] rtc: pm8xxx: " Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 096/343] fbdev: chipsfb: remove set but not used variable size Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 097/343] iw_cxgb4: use tos when importing the endpoint Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 098/343] iw_cxgb4: use tos when finding ipv6 routes Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 099/343] drm/etnaviv: potential NULL dereference Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 100/343] pinctrl: sh-pfc: emev2: Add missing pinmux functions Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 101/343] pinctrl: sh-pfc: r8a7791: Fix scifb2_data_c pin group Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 102/343] pinctrl: sh-pfc: r8a7792: Fix vin1_data18_b " Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 103/343] pinctrl: sh-pfc: sh73a0: Fix fsic_spdif pin groups Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 104/343] PCI: endpoint: functions: Use memcpy_fromio()/memcpy_toio() Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 105/343] usb: phy: twl6030-usb: fix possible use-after-free on remove Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 106/343] block: dont use bio->bi_vcnt to figure out segment number Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 107/343] keys: Timestamp new keys Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 108/343] vfio_pci: Enable memory accesses before calling pci_map_rom Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 109/343] hwmon: (pmbus/tps53679) Fix driver info initialization in probe routine Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 110/343] KVM: PPC: Release all hardware TCE tables attached to a group Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 111/343] staging: r8822be: check kzalloc return or bail Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 112/343] dmaengine: mv_xor: Use correct device for DMA API Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 113/343] cdc-wdm: pass return value of recover_from_urb_loss Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 114/343] regulator: pv88060: Fix array out-of-bounds access Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 115/343] regulator: pv88080: " Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 116/343] regulator: pv88090: " Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 117/343] net: dsa: qca8k: Enable delay for RGMII_ID mode Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 118/343] drm/nouveau/bios/ramcfg: fix missing parentheses when calculating RON Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 119/343] drm/nouveau/pmu: dont print reply values if exec is false Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 120/343] ASoC: qcom: Fix of-node refcount unbalance in apq8016_sbc_parse_of() Greg Kroah-Hartman
2020-01-24 9:28 ` [PATCH 4.14 121/343] fs/nfs: Fix nfs_parse_devname to not modify its argument Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 122/343] staging: rtlwifi: Use proper enum for return in halmac_parse_psd_data_88xx Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 123/343] powerpc/64s: Fix logic when handling unknown CPU features Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 124/343] NFS: Fix a soft lockup in the delegation recovery code Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 125/343] clocksource/drivers/sun5i: Fail gracefully when clock rate is unavailable Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 126/343] clocksource/drivers/exynos_mct: Fix error path in timer resources initialization Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 127/343] platform/x86: wmi: fix potential null pointer dereference Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 128/343] NFS/pnfs: Bulk destroy of layouts needs to be safe w.r.t. umount Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 129/343] mmc: sdhci-brcmstb: handle mmc_of_parse() errors during probe Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 130/343] ARM: 8847/1: pm: fix HYP/SVC mode mismatch when MCPM is used Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 131/343] ARM: 8848/1: virt: Align GIC version check with arm64 counterpart Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 132/343] regulator: wm831x-dcdc: Fix list of wm831x_dcdc_ilim from mA to uA Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 133/343] netfilter: nft_set_hash: fix lookups with fixed size hash on big endian Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 134/343] NFSv4/flexfiles: Fix invalid deref in FF_LAYOUT_DEVID_NODE() Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 135/343] net: aquantia: fixed instack structure overflow Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 136/343] powerpc/mm: Check secondary hash page table Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 137/343] nios2: ksyms: Add missing symbol exports Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 138/343] x86/mm: Remove unused variable cpu Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 139/343] scsi: megaraid_sas: reduce module load time Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 140/343] drivers/rapidio/rio_cm.c: fix potential oops in riocm_ch_listen() Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 141/343] xen, cpu_hotplug: Prevent an out of bounds access Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 142/343] net: sh_eth: fix a missing check of of_get_phy_mode Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 143/343] regulator: lp87565: Fix missing register for LP87565_BUCK_0 Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 144/343] media: ivtv: update *pos correctly in ivtv_read_pos() Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 145/343] media: cx18: update *pos correctly in cx18_read_pos() Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 146/343] media: wl128x: Fix an error code in fm_download_firmware() Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 147/343] media: cx23885: check allocation return Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 148/343] regulator: tps65086: Fix tps65086_ldoa1_ranges for selector 0xB Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 149/343] jfs: fix bogus variable self-initialization Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 150/343] tipc: tipc clang warning Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 151/343] m68k: mac: Fix VIA timer counter accesses Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 152/343] arm64: dts: allwinner: a64: Add missing PIO clocks Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 153/343] ARM: OMAP2+: Fix potentially uninitialized return value for _setup_reset() Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 154/343] media: davinci-isif: avoid uninitialized variable use Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 155/343] media: tw5864: Fix possible NULL pointer dereference in tw5864_handle_frame Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 156/343] spi: tegra114: clear packed bit for unpacked mode Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 157/343] spi: tegra114: fix for unpacked mode transfers Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 158/343] spi: tegra114: terminate dma and reset on transfer timeout Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 159/343] spi: tegra114: flush fifos Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 160/343] spi: tegra114: configure dma burst size to fifo trig level Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 161/343] soc/fsl/qe: Fix an error code in qe_pin_request() Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 162/343] spi: bcm2835aux: fix driver to not allow 65535 (=-1) cs-gpios Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 163/343] ehea: Fix a copy-paste err in ehea_init_port_res Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 164/343] scsi: qla2xxx: Unregister chrdev if module initialization fails Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 165/343] scsi: target/core: Fix a race condition in the LUN lookup code Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 166/343] ARM: pxa: ssp: Fix "WARNING: invalid free of devm_ allocated data" Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 167/343] net: hns3: fix for vport->bw_limit overflow problem Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 168/343] hwmon: (w83627hf) Use request_muxed_region for Super-IO accesses Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 169/343] platform/x86: alienware-wmi: fix kfree on potentially uninitialized pointer Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 170/343] tipc: set sysctl_tipc_rmem and named_timeout right range Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 171/343] selftests/ipc: Fix msgque compiler warnings Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 172/343] powerpc: vdso: Make vdso32 installation conditional in vdso_install Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 173/343] ARM: dts: ls1021: Fix SGMII PCS link remaining down after PHY disconnect Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 174/343] media: ov2659: fix unbalanced mutex_lock/unlock Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 175/343] 6lowpan: Off by one handling ->nexthdr Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 176/343] dmaengine: axi-dmac: Dont check the number of frames for alignment Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 177/343] ALSA: usb-audio: Handle the error from snd_usb_mixer_apply_create_quirk() Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 178/343] NFS: Dont interrupt file writeout due to fatal errors Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 179/343] irqchip/gic-v3-its: fix some definitions of inner cacheability attributes Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 180/343] scsi: qla2xxx: Fix a format specifier Greg Kroah-Hartman
2020-01-24 9:29 ` [PATCH 4.14 181/343] scsi: qla2xxx: Avoid that qlt_send_resp_ctio() corrupts memory Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 182/343] packet: in recvmsg msg_name return at least sizeof sockaddr_ll Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 183/343] ASoC: fix valid stream condition Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 184/343] usb: gadget: fsl: fix link error against usb-gadget module Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 185/343] dwc2: gadget: Fix completed transfer size calculation in DDMA Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 186/343] IB/mlx5: Add missing XRC options to QP optional params mask Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 187/343] iommu/vt-d: Make kernel parameter igfx_off work with vIOMMU Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 188/343] net: ena: fix swapped parameters when calling ena_com_indirect_table_fill_entry Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 189/343] net: ena: fix: Free napi resources when ena_up() fails Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 190/343] net: ena: fix incorrect test of supported hash function Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 191/343] net: ena: fix ena_com_fill_hash_function() implementation Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 192/343] dmaengine: tegra210-adma: restore channel status Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 193/343] mmc: core: fix possible use after free of host Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 194/343] lightnvm: pblk: fix lock order in pblk_rb_tear_down_check Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 195/343] afs: Fix the afs.cell and afs.volume xattr handlers Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 196/343] vfio/mdev: Avoid release parent reference during error path Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 197/343] vfio/mdev: Fix aborting mdev child device removal if one fails Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 198/343] l2tp: Fix possible NULL pointer dereference Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 199/343] media: omap_vout: potential buffer overflow in vidioc_dqbuf() Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 200/343] media: davinci/vpbe: array underflow in vpbe_enum_outputs() Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 201/343] platform/x86: alienware-wmi: printing the wrong error code Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 202/343] crypto: caam - fix caam_dump_sg that iterates through scatterlist Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 203/343] netfilter: ebtables: CONFIG_COMPAT: reject trailing data after last rule Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 204/343] pwm: meson: Consider 128 a valid pre-divider Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 205/343] pwm: meson: Dont disable PWM when setting duty repeatedly Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 206/343] ARM: riscpc: fix lack of keyboard interrupts after irq conversion Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 207/343] kdb: do a sanity check on the cpu in kdb_per_cpu() Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 208/343] backlight: lm3630a: Return 0 on success in update_status functions Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 209/343] thermal: cpu_cooling: Actually trace CPU load in thermal_power_cpu_get_power Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 210/343] EDAC/mc: Fix edac_mc_find() in case no device is found Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 211/343] ARM: dts: sun8i-h3: Fix wifi in Beelink X2 DT Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 212/343] dmaengine: tegra210-adma: Fix crash during probe Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 213/343] arm64: dts: meson: libretech-cc: set eMMC as removable Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 214/343] RDMA/qedr: Fix incorrect device rate Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 215/343] spi: spi-fsl-spi: call spi_finalize_current_message() at the end Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 216/343] crypto: ccp - fix AES CFB error exposed by new test vectors Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 217/343] crypto: ccp - Fix 3DES complaint from ccp-crypto module Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 218/343] serial: stm32: fix rx error handling Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 219/343] serial: stm32: fix transmit_chars when tx is stopped Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 220/343] serial: stm32: Add support of TC bit status check Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 221/343] serial: stm32: fix wakeup source initialization Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 222/343] misc: sgi-xp: Properly initialize buf in xpc_get_rsvd_page_pa Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 223/343] PCI: PM: Avoid possible suspend-to-idle issue Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 224/343] iommu: Use right function to get group for device Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 225/343] signal/cifs: Fix cifs_put_tcp_session to call send_sig instead of force_sig Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 226/343] inet: frags: call inet_frags_fini() after unregister_pernet_subsys() Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 227/343] netvsc: unshare skb in VF rx handler Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 228/343] cpufreq: brcmstb-avs-cpufreq: Fix initial command check Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 229/343] cpufreq: brcmstb-avs-cpufreq: Fix types for voltage/frequency Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 230/343] media: vivid: fix incorrect assignment operation when setting video mode Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 231/343] mpls: fix warning with multi-label encap Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 232/343] iommu/vt-d: Duplicate iommu_resv_region objects per device list Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 233/343] qed: iWARP - Use READ_ONCE and smp_store_release to access ep->state Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 234/343] powerpc/cacheinfo: add cacheinfo_teardown, cacheinfo_rebuild Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 235/343] powerpc/pseries/mobility: rebuild cacheinfo hierarchy post-migration Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 236/343] drm/msm/mdp5: Fix mdp5_cfg_init error return Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 237/343] net: netem: fix backlog accounting for corrupted GSO frames Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 238/343] net/af_iucv: always register net_device notifier Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 239/343] ASoC: ti: davinci-mcasp: Fix slot mask settings when using multiple AXRs Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 240/343] rtc: pcf8563: Fix interrupt trigger method Greg Kroah-Hartman
2020-01-24 9:30 ` [PATCH 4.14 241/343] rtc: pcf8563: Clear event flags and disable interrupts before requesting irq Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 242/343] drm/msm/a3xx: remove TPL1 regs from snapshot Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 243/343] perf/ioctl: Add check for the sample_period value Greg Kroah-Hartman
2020-01-24 9:31 ` Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 244/343] dmaengine: hsu: Revert "set HSU_CH_MTSR to memory width" Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 245/343] clk: qcom: Fix -Wunused-const-variable Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 246/343] nvmem: imx-ocotp: Ensure WAIT bits are preserved when setting timing Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 247/343] bnxt_en: Fix ethtool selftest crash under error conditions Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 248/343] iommu/amd: Make iommu_disable safer Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 249/343] mfd: intel-lpss: Release IDA resources Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 250/343] rxrpc: Fix uninitialized error code in rxrpc_send_data_packet() Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 251/343] devres: allow const resource arguments Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 252/343] RDMA/hns: Fixs hw access invalid dma memory error Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 253/343] net: pasemi: fix an use-after-free in pasemi_mac_phy_init() Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 254/343] scsi: libfc: fix null pointer dereference on a null lport Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 255/343] clk: sunxi-ng: v3s: add the missing PLL_DDR1 Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 256/343] PM: sleep: Fix possible overflow in pm_system_cancel_wakeup() Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 257/343] libertas_tf: Use correct channel range in lbtf_geo_init Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 258/343] qed: reduce maximum stack frame size Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 259/343] usb: host: xhci-hub: fix extra endianness conversion Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 260/343] mic: avoid statically declaring a struct device Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 261/343] x86/kgbd: Use NMI_VECTOR not APIC_DM_NMI Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 262/343] crypto: ccp - Reduce maximum stack usage Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 263/343] ALSA: aoa: onyx: always initialize register read value Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 264/343] tipc: reduce risk of wakeup queue starvation Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 265/343] ARM: dts: stm32: add missing vdda-supply to adc on stm32h743i-eval Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 266/343] net/mlx5: Fix mlx5_ifc_query_lag_out_bits Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 267/343] cifs: fix rmmod regression in cifs.ko caused by force_sig changes Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 268/343] crypto: caam - free resources in case caam_rng registration failed Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 269/343] ext4: set error return correctly when ext4_htree_store_dirent fails Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 270/343] ASoC: es8328: Fix copy-paste error in es8328_right_line_controls Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 271/343] ASoC: cs4349: Use PM ops cs4349_runtime_pm Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 272/343] ASoC: wm8737: Fix copy-paste error in wm8737_snd_controls Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 273/343] net/rds: Add a few missing rds_stat_names entries Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 274/343] bnxt_en: Fix handling FRAG_ERR when NVM_INSTALL_UPDATE cmd fails Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 275/343] signal: Allow cifs and drbd to receive their terminating signals Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 276/343] ASoC: sun4i-i2s: RX and TX counter registers are swapped Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 277/343] dmaengine: dw: platform: Switch to acpi_dma_controller_register() Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 278/343] mac80211: minstrel_ht: fix per-group max throughput rate initialization Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 279/343] media: atmel: atmel-isi: fix timeout value for stop streaming Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 280/343] rtc: pcf2127: bugfix: read rtc disables watchdog Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 281/343] mips: avoid explicit UB in assignment of mips_io_port_base Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 282/343] iommu/mediatek: Fix iova_to_phys PA start for 4GB mode Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 283/343] ahci: Do not export local variable ahci_em_messages Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 284/343] Partially revert "kfifo: fix kfifo_alloc() and kfifo_init()" Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 285/343] hwmon: (lm75) Fix write operations for negative temperatures Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 286/343] power: supply: Init device wakeup after device_add() Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 287/343] x86, perf: Fix the dependency of the x86 insn decoder selftest Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 288/343] staging: greybus: light: fix a couple double frees Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 289/343] irqdomain: Add the missing assignment of domain->fwnode for named fwnode Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 290/343] bcma: fix incorrect update of BCMA_CORE_PCI_MDIO_DATA Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 291/343] iio: dac: ad5380: fix incorrect assignment to val Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 292/343] ath9k: dynack: fix possible deadlock in ath_dynack_node_{de}init Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 293/343] tty: serial: fsl_lpuart: Use appropriate lpuart32_* I/O funcs Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 294/343] net: sonic: return NETDEV_TX_OK if failed to map buffer Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 295/343] scsi: fnic: fix msix interrupt allocation Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 296/343] Btrfs: fix hang when loading existing inode cache off disk Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 297/343] Btrfs: fix inode cache waiters hanging on failure to start caching thread Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 298/343] Btrfs: fix inode cache waiters hanging on path allocation failure Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 299/343] btrfs: use correct count in btrfs_file_write_iter() Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 300/343] ixgbe: sync the first fragment unconditionally Greg Kroah-Hartman
2020-01-24 9:31 ` [PATCH 4.14 301/343] hwmon: (shtc1) fix shtc1 and shtw1 id mask Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 302/343] net: sonic: replace dev_kfree_skb in sonic_send_packet Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 303/343] pinctrl: iproc-gpio: Fix incorrect pinconf configurations Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 304/343] ath10k: adjust skb length in ath10k_sdio_mbox_rx_packet Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 305/343] RDMA/cma: Fix false error message Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 306/343] net/rds: Fix ib_evt_handler_call element in rds_ib_stat_names Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 307/343] iommu/amd: Wait for completion of IOTLB flush in attach_device Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 308/343] net: aquantia: Fix aq_vec_isr_legacy() return value Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 309/343] net: hisilicon: Fix signedness bug in hix5hd2_dev_probe() Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 310/343] net: broadcom/bcmsysport: Fix signedness in bcm_sysport_probe() Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 311/343] net: stmmac: dwmac-meson8b: Fix signedness bug in probe Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 312/343] net: axienet: fix a " Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 313/343] of: mdio: Fix a signedness bug in of_phy_get_and_connect() Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 314/343] net: ethernet: stmmac: Fix signedness bug in ipq806x_gmac_of_parse() Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 315/343] nvme: retain split access workaround for capability reads Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 316/343] net: stmmac: gmac4+: Not all Unicast addresses may be available Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 317/343] mac80211: accept deauth frames in IBSS mode Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 318/343] llc: fix another potential sk_buff leak in llc_ui_sendmsg() Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 319/343] llc: fix sk_buff refcounting in llc_conn_state_process() Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 320/343] net: stmmac: fix length of PTP clocks name string Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 321/343] act_mirred: Fix mirred_init_module error handling Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 322/343] net: avoid possible false sharing in sk_leave_memory_pressure() Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 323/343] net: add {READ|WRITE}_ONCE() annotations on ->rskq_accept_head Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 324/343] tcp: annotate lockless access to tcp_memory_pressure Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 325/343] drm/msm/dsi: Implement reset correctly Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 326/343] dmaengine: imx-sdma: fix size check for sdma script_number Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 327/343] net: netem: fix error path for corrupted GSO frames Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 328/343] net: netem: correct the parents backlog when corrupted packet was dropped Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 329/343] net: qca_spi: Move reset_count to struct qcaspi Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 330/343] afs: Fix large file support Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 331/343] MIPS: Loongson: Fix return value of loongson_hwmon_init Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 332/343] hv_netvsc: flag software created hash value Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 333/343] net: neigh: use long type to store jiffies delta Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 334/343] packet: fix data-race in fanout_flow_is_huge() Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 335/343] mmc: sdio: fix wl1251 vendor id Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 336/343] mmc: core: fix wl1251 sdio quirks Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 337/343] affs: fix a memory leak in affs_remount Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 338/343] dmaengine: ti: edma: fix missed failure handling Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 339/343] drm/radeon: fix bad DMA from INTERRUPT_CNTL2 Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 340/343] arm64: dts: juno: Fix UART frequency Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 341/343] IB/iser: Fix dma_nents type definition Greg Kroah-Hartman
2020-01-24 9:32 ` [PATCH 4.14 342/343] serial: stm32: fix clearing interrupt error flags Greg Kroah-Hartman
2020-01-24 9:32 ` Greg Kroah-Hartman [this message]
2020-01-24 14:17 ` [PATCH 4.14 000/343] 4.14.168-stable review Guenter Roeck
2020-01-24 17:33 ` Greg Kroah-Hartman
2020-01-24 14:51 ` Jon Hunter
2020-01-24 14:51 ` Jon Hunter
2020-01-24 17:18 ` Naresh Kamboju
2020-01-24 21:48 ` shuah
2020-01-24 23:54 ` 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=20200124093004.995466377@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=fthain@telegraphics.com.au \
--cc=geert@linux-m68k.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=tglx@linutronix.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.