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,
	syzbot+10c98dc5725c6c8fc7fb@syzkaller.appspotmail.com,
	Paolo Abeni <pabeni@redhat.com>,
	Pablo Neira Ayuso <pablo@netfilter.org>
Subject: [PATCH 4.14 012/140] netfilter: x_tables: fix missing timer initialization in xt_LED
Date: Tue, 13 Mar 2018 16:23:35 +0100	[thread overview]
Message-ID: <20180313152458.932609906@linuxfoundation.org> (raw)
In-Reply-To: <20180313152458.201155692@linuxfoundation.org>

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

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

From: Paolo Abeni <pabeni@redhat.com>

commit 10414014bc085aac9f787a5890b33b5605fbcfc4 upstream.

syzbot reported that xt_LED may try to use the ledinternal->timer
without previously initializing it:

------------[ cut here ]------------
kernel BUG at kernel/time/timer.c:958!
invalid opcode: 0000 [#1] SMP KASAN
Dumping ftrace buffer:
    (ftrace buffer empty)
Modules linked in:
CPU: 1 PID: 1826 Comm: kworker/1:2 Not tainted 4.15.0+ #306
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS
Google 01/01/2011
Workqueue: ipv6_addrconf addrconf_dad_work
RIP: 0010:__mod_timer kernel/time/timer.c:958 [inline]
RIP: 0010:mod_timer+0x7d6/0x13c0 kernel/time/timer.c:1102
RSP: 0018:ffff8801d24fe9f8 EFLAGS: 00010293
RAX: ffff8801d25246c0 RBX: ffff8801aec6cb50 RCX: ffffffff816052c6
RDX: 0000000000000000 RSI: 00000000fffbd14b RDI: ffff8801aec6cb68
RBP: ffff8801d24fec98 R08: 0000000000000000 R09: 1ffff1003a49fd6c
R10: ffff8801d24feb28 R11: 0000000000000005 R12: dffffc0000000000
R13: ffff8801d24fec70 R14: 00000000fffbd14b R15: ffff8801af608f90
FS:  0000000000000000(0000) GS:ffff8801db500000(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00000000206d6fd0 CR3: 0000000006a22001 CR4: 00000000001606e0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
Call Trace:
  led_tg+0x1db/0x2e0 net/netfilter/xt_LED.c:75
  ip6t_do_table+0xc2a/0x1a30 net/ipv6/netfilter/ip6_tables.c:365
  ip6table_raw_hook+0x65/0x80 net/ipv6/netfilter/ip6table_raw.c:42
  nf_hook_entry_hookfn include/linux/netfilter.h:120 [inline]
  nf_hook_slow+0xba/0x1a0 net/netfilter/core.c:483
  nf_hook.constprop.27+0x3f6/0x830 include/linux/netfilter.h:243
  NF_HOOK include/linux/netfilter.h:286 [inline]
  ndisc_send_skb+0xa51/0x1370 net/ipv6/ndisc.c:491
  ndisc_send_ns+0x38a/0x870 net/ipv6/ndisc.c:633
  addrconf_dad_work+0xb9e/0x1320 net/ipv6/addrconf.c:4008
  process_one_work+0xbbf/0x1af0 kernel/workqueue.c:2113
  worker_thread+0x223/0x1990 kernel/workqueue.c:2247
  kthread+0x33c/0x400 kernel/kthread.c:238
  ret_from_fork+0x3a/0x50 arch/x86/entry/entry_64.S:429
Code: 85 2a 0b 00 00 4d 8b 3c 24 4d 85 ff 75 9f 4c 8b bd 60 fd ff ff e8 bb
57 10 00 65 ff 0d 94 9a a1 7e e9 d9 fc ff ff e8 aa 57 10 00 <0f> 0b e8 a3
57 10 00 e9 14 fb ff ff e8 99 57 10 00 4c 89 bd 70
RIP: __mod_timer kernel/time/timer.c:958 [inline] RSP: ffff8801d24fe9f8
RIP: mod_timer+0x7d6/0x13c0 kernel/time/timer.c:1102 RSP: ffff8801d24fe9f8
---[ end trace f661ab06f5dd8b3d ]---

The ledinternal struct can be shared between several different
xt_LED targets, but the related timer is currently initialized only
if the first target requires it. Fix it by unconditionally
initializing the timer struct.

v1 -> v2: call del_timer_sync() unconditionally, too.

Fixes: 268cb38e1802 ("netfilter: x_tables: add LED trigger target")
Reported-by: syzbot+10c98dc5725c6c8fc7fb@syzkaller.appspotmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 net/netfilter/xt_LED.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

--- a/net/netfilter/xt_LED.c
+++ b/net/netfilter/xt_LED.c
@@ -141,10 +141,11 @@ static int led_tg_check(const struct xt_
 		goto exit_alloc;
 	}
 
-	/* See if we need to set up a timer */
-	if (ledinfo->delay > 0)
-		setup_timer(&ledinternal->timer, led_timeout_callback,
-			    (unsigned long)ledinternal);
+	/* Since the letinternal timer can be shared between multiple targets,
+	 * always set it up, even if the current target does not need it
+	 */
+	setup_timer(&ledinternal->timer, led_timeout_callback,
+		    (unsigned long)ledinternal);
 
 	list_add_tail(&ledinternal->list, &xt_led_triggers);
 
@@ -181,8 +182,7 @@ static void led_tg_destroy(const struct
 
 	list_del(&ledinternal->list);
 
-	if (ledinfo->delay > 0)
-		del_timer_sync(&ledinternal->timer);
+	del_timer_sync(&ledinternal->timer);
 
 	led_trigger_unregister(&ledinternal->netfilter_led_trigger);
 

  parent reply	other threads:[~2018-03-13 15:23 UTC|newest]

Thread overview: 150+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-13 15:23 [PATCH 4.14 000/140] 4.14.27-stable review Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 001/140] kbuild: move "_all" target out of $(KBUILD_SRC) conditional Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 002/140] watchdog: hpwdt: SMBIOS check Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 003/140] watchdog: hpwdt: Check source of NMI Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 004/140] watchdog: hpwdt: fix unused variable warning Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 005/140] watchdog: hpwdt: Remove legacy NMI sourcing Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 006/140] ARM: omap2: hide omap3_save_secure_ram on non-OMAP3 builds Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 007/140] ASoC: Intel: Skylake: Fix jack name format substitution Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 008/140] ASoC: Intel: kbl: fix jack name Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 009/140] netfilter: add back stackpointer size checks Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 010/140] netfilter: ipt_CLUSTERIP: fix a race condition of proc file creation Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 011/140] netfilter: xt_hashlimit: fix lock imbalance Greg Kroah-Hartman
2018-03-13 15:23 ` Greg Kroah-Hartman [this message]
2018-03-13 15:23 ` [PATCH 4.14 013/140] netfilter: nat: cope with negative port range Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 014/140] netfilter: IDLETIMER: be syzkaller friendly Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 015/140] netfilter: ebtables: CONFIG_COMPAT: dont trust userland offsets Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 016/140] netfilter: bridge: ebt_among: add missing match size checks Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 017/140] netfilter: ipv6: fix use-after-free Write in nf_nat_ipv6_manip_pkt Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 018/140] netfilter: use skb_to_full_sk in ip6_route_me_harder Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 019/140] tpm_tis: Move ilb_base_addr to tpm_tis_data Greg Kroah-Hartman
2018-03-14  0:42   ` Shaikh, Azhar
2018-03-13 15:23 ` [PATCH 4.14 020/140] tpm: Keep CLKRUN enabled throughout the duration of transmit_cmd() Greg Kroah-Hartman
2018-03-14  0:42   ` Shaikh, Azhar
2018-03-13 15:23 ` [PATCH 4.14 021/140] tpm: delete the TPM_TIS_CLK_ENABLE flag Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 022/140] tpm: remove unused variables Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 023/140] tpm: only attempt to disable the LPC CLKRUN if is already enabled Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 024/140] scsi: qla2xxx: Fix system crash for Notify ack timeout handling Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 025/140] scsi: qla2xxx: Fix gpnid error processing Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 026/140] scsi: qla2xxx: Move session delete to driver work queue Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 027/140] scsi: qla2xxx: Skip IRQ affinity for Target QPairs Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 028/140] scsi: qla2xxx: Fix re-login for Nport Handle in use Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 029/140] scsi: qla2xxx: Retry switch command on time out Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 030/140] scsi: qla2xxx: Serialize GPNID for multiple RSCN Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 031/140] scsi: qla2xxx: Fix login state machine stuck at GPDB Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 032/140] scsi: qla2xxx: Fix NPIV host cleanup in target mode Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 033/140] scsi: qla2xxx: Fix Relogin being triggered too fast Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 034/140] scsi: qla2xxx: Fix PRLI state check Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 035/140] scsi: qla2xxx: Fix abort command deadlock due to spinlock Greg Kroah-Hartman
2018-03-13 15:23 ` [PATCH 4.14 036/140] scsi: qla2xxx: Replace fcport alloc with qla2x00_alloc_fcport Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 037/140] scsi: qla2xxx: Fix scan state field for fcport Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 038/140] scsi: qla2xxx: Clear loop id after delete Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 039/140] scsi: qla2xxx: Defer processing of GS IOCB calls Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 040/140] scsi: qla2xxx: Remove aborting ELS IOCB call issued as part of timeout Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 041/140] scsi: qla2xxx: Fix system crash in qlt_plogi_ack_unref Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 042/140] scsi: qla2xxx: Fix memory leak in dual/target mode Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 043/140] NFS: Fix an incorrect type in struct nfs_direct_req Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 044/140] pNFS: Prevent the layout header refcount going to zero in pnfs_roc() Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 045/140] NFS: Fix unstable write completion Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 046/140] RDMA/ucma: Limit possible option size Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 047/140] RDMA/ucma: Check that user doesnt overflow QP state Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 048/140] RDMA/mlx5: Fix integer overflow while resizing CQ Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 049/140] IB/uverbs: Improve lockdep_check Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 050/140] net/smc: fix NULL pointer dereference on sock_create_kern() error path Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 051/140] regulator: stm32-vrefbuf: fix check on ready flag Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 052/140] drm/i915: Fix rsvd2 mask when out-fence is returned Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 053/140] drm/i915: Clear the in-use marker on execbuf failure Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 054/140] drm/i915: Disable DC states around GMBUS on GLK Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 055/140] drm/i915: Update watermark state correctly in sanitize_watermarks Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 056/140] drm/i915: Try EDID bitbanging on HDMI after failed read Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 057/140] drm/i915/perf: fix perf stream opening lock Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 058/140] scsi: core: Avoid that ATA error handling can trigger a kernel hang or oops Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 059/140] scsi: qla2xxx: Fix NULL pointer crash due to active timer for ABTS Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 060/140] drm/i915: Always call to intel_display_set_init_power() in resume_early Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 061/140] workqueue: Allow retrieval of current tasks work struct Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 062/140] drm: Allow determining if current task is output poll worker Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 063/140] drm/nouveau: Fix deadlock on runtime suspend Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 064/140] drm/radeon: " Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 065/140] drm/amdgpu: " Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 066/140] drm/nouveau: prefer XBGR2101010 for addfb ioctl Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 067/140] drm/amd/powerplay/smu7: allow mclk switching with no displays Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 068/140] drm/amd/powerplay/vega10: " Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 069/140] Revert "drm/radeon/pm: autoswitch power state when in balanced mode" Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 070/140] drm/radeon: insist on 32-bit DMA for Cedar on PPC64/PPC64LE Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 071/140] drm/amd/powerplay: fix power over limit on Fiji Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 072/140] drm/amdgpu: used cached pcie gen info for SI (v2) Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 073/140] drm/amdgpu: Notify sbios device ready before send request Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 074/140] drm/radeon: fix KV harvesting Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 075/140] drm/amdgpu: " Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 076/140] drm/amdgpu:Correct max uvd handles Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 077/140] drm/amdgpu:Always save uvd vcpu_bo in VM Mode Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 078/140] MIPS: BMIPS: Do not mask IPIs during suspend Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 079/140] MIPS: ath25: Check for kzalloc allocation failure Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 080/140] MIPS: OCTEON: irq: Check for null return on kzalloc allocation Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 081/140] PCI: dwc: Fix enumeration end when reaching root subordinate Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 082/140] Input: matrix_keypad - fix race when disabling interrupts Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 083/140] lib/bug.c: exclude non-BUG/WARN exceptions from report_bug() Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 084/140] mm/memblock.c: hardcode the end_pfn being -1 Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 085/140] mm/page_alloc: fix memmap_init_zone pageblock alignment Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 086/140] Documentation/sphinx: Fix Directive import error Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 087/140] loop: Fix lost writes caused by missing flag Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 088/140] virtio_ring: fix num_free handling in error case Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 089/140] KVM: s390: fix memory overwrites when not using SCA entries Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 090/140] arm64: mm: fix thinko in non-global page table attribute check Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 091/140] IB/core: Fix missing RDMA cgroups release in case of failure to register device Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 092/140] kbuild: Handle builtin dtb file names containing hyphens Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 093/140] dm bufio: avoid false-positive Wmaybe-uninitialized warning Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 094/140] IB/mlx5: Fix incorrect size of klms in the memory region Greg Kroah-Hartman
2018-03-13 15:24 ` [PATCH 4.14 095/140] bcache: fix crashes in duplicate cache device register Greg Kroah-Hartman
2018-03-13 16:19   ` Marc MERLIN
2018-03-13 17:26     ` Michael Lyle
2018-03-14  1:40       ` Marc MERLIN
2018-03-13 15:24 ` [PATCH 4.14 096/140] bcache: dont attach backing with duplicate UUID Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 097/140] x86/MCE: Save microcode revision in machine check records Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 098/140] x86/MCE: Serialize sysfs changes Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 099/140] perf tools: Fix trigger class trigger_on() Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 100/140] x86/spectre_v2: Dont check microcode versions when running under hypervisors Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 101/140] ALSA: hda/realtek - Add support headset mode for DELL WYSE Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 102/140] ALSA: hda/realtek - Add headset mode support for Dell laptop Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 103/140] ALSA: hda/realtek: Limit mic boost on T480 Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 104/140] ALSA: hda/realtek - Fix dock line-out volume on Dell Precision 7520 Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 105/140] ALSA: hda/realtek - Make dock sound work on ThinkPad L570 Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 106/140] ALSA: seq: Dont allow resizing pool in use Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 107/140] ALSA: seq: More protection for concurrent write and ioctl races Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 108/140] ALSA: hda - Fix a wrong FIXUP for alc289 on Dell machines Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 109/140] ALSA: hda: add dock and led support for HP EliteBook 820 G3 Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 110/140] ALSA: hda: add dock and led support for HP ProBook 640 G2 Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 111/140] scsi: qla2xxx: Fix NULL pointer crash due to probe failure Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 112/140] scsi: qla2xxx: Fix recursion while sending terminate exchange Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 113/140] dt-bindings: Document mti,mips-cpc binding Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 114/140] MIPS: CPC: Map registers using DT in mips_cpc_default_phys_base() Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 115/140] nospec: Kill array_index_nospec_mask_check() Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 116/140] nospec: Include <asm/barrier.h> dependency Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 117/140] x86/entry: Reduce the code footprint of the idtentry macro Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 118/140] x86/entry/64: Use xorl for faster register clearing Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 119/140] x86/mm: Remove stale comment about KMEMCHECK Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 120/140] x86/asm: Improve how GEN_*_SUFFIXED_RMWcc() specify clobbers Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 121/140] x86/LDT: Avoid warning in 32-bit builds with older gcc Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 122/140] x86-64/realmode: Add instruction suffix Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 123/140] Revert "x86/retpoline: Simplify vmexit_fill_RSB()" Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 124/140] x86/speculation: Use IBRS if available before calling into firmware Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 125/140] x86/retpoline: Support retpoline builds with Clang Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 126/140] x86/speculation, objtool: Annotate indirect calls/jumps for objtool Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 127/140] x86/speculation: Move firmware_restrict_branch_speculation_*() from C to CPP Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 128/140] x86/paravirt, objtool: Annotate indirect calls Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 129/140] x86/boot, objtool: Annotate indirect jump in secondary_startup_64() Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 130/140] x86/mm/sme, objtool: Annotate indirect call in sme_encrypt_execute() Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 131/140] objtool: Use existing global variables for options Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 132/140] objtool: Add retpoline validation Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 133/140] kbuild: re-order the code to not parse unnecessary variables Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 134/140] kbuild: Set KBUILD_CFLAGS before incl. arch Makefile Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 135/140] kbuild: move cc-option and cc-disable-warning after " Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 136/140] objtool: Add module specific retpoline rules Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 137/140] objtool, retpolines: Integrate objtool with retpoline support more closely Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 138/140] objtool: Fix another switch table detection issue Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 139/140] objtool: Fix 32-bit build Greg Kroah-Hartman
2018-03-13 15:25 ` [PATCH 4.14 140/140] x86/kprobes: Fix kernel crash when probing .entry_trampoline code Greg Kroah-Hartman
2018-03-13 21:00 ` [PATCH 4.14 000/140] 4.14.27-stable review kernelci.org bot
2018-03-13 22:27 ` Guenter Roeck
2018-03-14 10:55 ` Greg Kroah-Hartman
2018-03-14 18:26   ` Naresh Kamboju

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=20180313152458.932609906@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=pablo@netfilter.org \
    --cc=stable@vger.kernel.org \
    --cc=syzbot+10c98dc5725c6c8fc7fb@syzkaller.appspotmail.com \
    /path/to/YOUR_REPLY

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

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