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, Guanglei Li <guanglei.li@oracle.com>,
	Honglei Wang <honglei.wang@oracle.com>,
	Junxiao Bi <junxiao.bi@oracle.com>,
	Yanjun Zhu <yanjun.zhu@oracle.com>,
	Leon Romanovsky <leonro@mellanox.com>,
	Santosh Shilimkar <santosh.shilimkar@oracle.com>,
	Doug Ledford <dledford@redhat.com>,
	"David S. Miller" <davem@davemloft.net>,
	Sasha Levin <alexander.levin@microsoft.com>
Subject: [PATCH 4.14 142/183] RDS: IB: Fix null pointer issue
Date: Wed, 25 Apr 2018 12:36:02 +0200	[thread overview]
Message-ID: <20180425103248.257601277@linuxfoundation.org> (raw)
In-Reply-To: <20180425103242.532713678@linuxfoundation.org>

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

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

From: Guanglei Li <guanglei.li@oracle.com>


[ Upstream commit 2c0aa08631b86a4678dbc93b9caa5248014b4458 ]

Scenario:
1. Port down and do fail over
2. Ap do rds_bind syscall

PID: 47039  TASK: ffff89887e2fe640  CPU: 47  COMMAND: "kworker/u:6"
 #0 [ffff898e35f159f0] machine_kexec at ffffffff8103abf9
 #1 [ffff898e35f15a60] crash_kexec at ffffffff810b96e3
 #2 [ffff898e35f15b30] oops_end at ffffffff8150f518
 #3 [ffff898e35f15b60] no_context at ffffffff8104854c
 #4 [ffff898e35f15ba0] __bad_area_nosemaphore at ffffffff81048675
 #5 [ffff898e35f15bf0] bad_area_nosemaphore at ffffffff810487d3
 #6 [ffff898e35f15c00] do_page_fault at ffffffff815120b8
 #7 [ffff898e35f15d10] page_fault at ffffffff8150ea95
    [exception RIP: unknown or invalid address]
    RIP: 0000000000000000  RSP: ffff898e35f15dc8  RFLAGS: 00010282
    RAX: 00000000fffffffe  RBX: ffff889b77f6fc00  RCX:ffffffff81c99d88
    RDX: 0000000000000000  RSI: ffff896019ee08e8  RDI:ffff889b77f6fc00
    RBP: ffff898e35f15df0   R8: ffff896019ee08c8  R9:0000000000000000
    R10: 0000000000000400  R11: 0000000000000000  R12:ffff896019ee08c0
    R13: ffff889b77f6fe68  R14: ffffffff81c99d80  R15: ffffffffa022a1e0
    ORIG_RAX: ffffffffffffffff  CS: 0010 SS: 0018
 #8 [ffff898e35f15dc8] cma_ndev_work_handler at ffffffffa022a228 [rdma_cm]
 #9 [ffff898e35f15df8] process_one_work at ffffffff8108a7c6
 #10 [ffff898e35f15e58] worker_thread at ffffffff8108bda0
 #11 [ffff898e35f15ee8] kthread at ffffffff81090fe6

PID: 45659  TASK: ffff880d313d2500  CPU: 31  COMMAND: "oracle_45659_ap"
 #0 [ffff881024ccfc98] __schedule at ffffffff8150bac4
 #1 [ffff881024ccfd40] schedule at ffffffff8150c2cf
 #2 [ffff881024ccfd50] __mutex_lock_slowpath at ffffffff8150cee7
 #3 [ffff881024ccfdc0] mutex_lock at ffffffff8150cdeb
 #4 [ffff881024ccfde0] rdma_destroy_id at ffffffffa022a027 [rdma_cm]
 #5 [ffff881024ccfe10] rds_ib_laddr_check at ffffffffa0357857 [rds_rdma]
 #6 [ffff881024ccfe50] rds_trans_get_preferred at ffffffffa0324c2a [rds]
 #7 [ffff881024ccfe80] rds_bind at ffffffffa031d690 [rds]
 #8 [ffff881024ccfeb0] sys_bind at ffffffff8142a670

PID: 45659                          PID: 47039
rds_ib_laddr_check
  /* create id_priv with a null event_handler */
  rdma_create_id
  rdma_bind_addr
    cma_acquire_dev
      /* add id_priv to cma_dev->id_list */
      cma_attach_to_dev
                                    cma_ndev_work_handler
                                      /* event_hanlder is null */
                                      id_priv->id.event_handler

Signed-off-by: Guanglei Li <guanglei.li@oracle.com>
Signed-off-by: Honglei Wang <honglei.wang@oracle.com>
Reviewed-by: Junxiao Bi <junxiao.bi@oracle.com>
Reviewed-by: Yanjun Zhu <yanjun.zhu@oracle.com>
Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
Acked-by: Doug Ledford <dledford@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 net/rds/ib.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- a/net/rds/ib.c
+++ b/net/rds/ib.c
@@ -346,7 +346,8 @@ static int rds_ib_laddr_check(struct net
 	/* Create a CMA ID and try to bind it. This catches both
 	 * IB and iWARP capable NICs.
 	 */
-	cm_id = rdma_create_id(&init_net, NULL, NULL, RDMA_PS_TCP, IB_QPT_RC);
+	cm_id = rdma_create_id(&init_net, rds_rdma_cm_event_handler,
+			       NULL, RDMA_PS_TCP, IB_QPT_RC);
 	if (IS_ERR(cm_id))
 		return PTR_ERR(cm_id);
 

  parent reply	other threads:[~2018-04-25 10:43 UTC|newest]

Thread overview: 193+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-25 10:33 [PATCH 4.14 000/183] 4.14.37-stable review Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 001/183] cifs: do not allow creating sockets except with SMB1 posix exensions Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 002/183] btrfs: fix unaligned access in readdir Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 003/183] x86/acpi: Prevent X2APIC id 0xffffffff from being accounted Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 004/183] clocksource/imx-tpm: Correct -ETIME return condition check Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 005/183] x86/tsc: Prevent 32bit truncation in calc_hpet_ref() Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 006/183] drm/vc4: Fix memory leak during BO teardown Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 007/183] drm/i915/gvt: throw error on unhandled vfio ioctls Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 008/183] drm/i915/audio: Fix audio detection issue on GLK Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 009/183] drm/i915: Do no use kfree() to free a kmem_cache_alloc() return value Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 010/183] drm/i915: Fix LSPCON TMDS output buffer enabling from low-power state Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 011/183] drm/i915/bxt, glk: Increase PCODE timeouts during CDCLK freq changing Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 012/183] usb: musb: fix enumeration after resume Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 013/183] usb: musb: call pm_runtime_{get,put}_sync before reading vbus registers Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 014/183] usb: musb: Fix external abort in musb_remove on omap2430 Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 015/183] powerpc/eeh: Fix race with driver un/bind Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 016/183] firewire-ohci: work around oversized DMA reads on JMicron controllers Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 017/183] x86/tsc: Allow TSC calibration without PIT Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 018/183] NFSv4: always set NFS_LOCK_LOST when a lock is lost Greg Kroah-Hartman
2018-04-25 10:33 ` [PATCH 4.14 019/183] ACPI / LPSS: Do not instiate platform_dev for devs without MMIO resources Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 020/183] ALSA: hda - Use IS_REACHABLE() for dependency on input Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 021/183] ASoC: au1x: Fix timeout tests in au1xac97c_ac97_read() Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 022/183] kvm: x86: fix KVM_XEN_HVM_CONFIG ioctl Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 023/183] RDMA/core: Clarify rdma_ah_find_type Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 024/183] KVM: PPC: Book3S HV: Enable migration of decrementer register Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 025/183] netfilter: ipv6: nf_defrag: Pass on packets to stack per RFC2460 Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 026/183] tracing/hrtimer: Fix tracing bugs by taking all clock bases and modes into account Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 027/183] KVM: s390: use created_vcpus in more places Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 028/183] platform/x86: dell-laptop: Filter out spurious keyboard backlight change events Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 029/183] xprtrdma: Fix backchannel allocation of extra rpcrdma_reps Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 030/183] selftest: ftrace: Fix to pick text symbols for kprobes Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 031/183] PCI: Add function 1 DMA alias quirk for Marvell 9128 Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 032/183] Input: psmouse - fix Synaptics detection when protocol is disabled Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 033/183] libbpf: Makefile set specified permission mode Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 034/183] Input: synaptics - reset the ABS_X/Y fuzz after initializing MT axes Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 035/183] i40iw: Free IEQ resources Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 036/183] i40iw: Zero-out consumer key on allocate stag for FMR Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 037/183] scsi: qla2xxx: Fix warning in qla2x00_async_iocb_timeout() Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 038/183] perf unwind: Do not look just at the global callchain_param.record_mode Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 039/183] tools lib traceevent: Simplify pointer print logic and fix %pF Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 040/183] perf callchain: Fix attr.sample_max_stack setting Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 041/183] tools lib traceevent: Fix get_field_str() for dynamic strings Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 042/183] perf record: Fix failed memory allocation for get_cpuid_str Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 043/183] iommu/exynos: Dont unconditionally steal bus ops Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 044/183] powerpc: System reset avoid interleaving oops using die synchronisation Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 045/183] iommu/vt-d: Use domain instead of cache fetching Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 046/183] dm thin: fix documentation relative to low water mark threshold Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 047/183] dm mpath: return DM_MAPIO_REQUEUE on blk-mq rq allocation failure Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 048/183] blk-mq: turn WARN_ON in __blk_mq_run_hw_queue into printk Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 049/183] ubifs: Fix uninitialized variable in search_dh_cookie() Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 050/183] net: stmmac: dwmac-meson8b: fix setting the RGMII TX clock on Meson8b Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 051/183] net: stmmac: dwmac-meson8b: propagate rate changes to the parent clock Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 052/183] spi: a3700: Clear DATA_OUT when performing a read Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 053/183] IB/cq: Dont force IB_POLL_DIRECT poll context for ib_process_cq_direct Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 054/183] nfs: Do not convert nfs_idmap_cache_timeout to jiffies Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 055/183] MIPS: Fix clean of vmlinuz.{32,ecoff,bin,srec} Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 056/183] PCI: Add dummy pci_irqd_intx_xlate() for CONFIG_PCI=n build Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 057/183] watchdog: sp5100_tco: Fix watchdog disable bit Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 058/183] kconfig: Dont leak main menus during parsing Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 059/183] kconfig: Fix automatic menu creation mem leak Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 060/183] kconfig: Fix expr_free() E_NOT leak Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 061/183] mac80211_hwsim: fix possible memory leak in hwsim_new_radio_nl() Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 062/183] ipmi/powernv: Fix error return code in ipmi_powernv_probe() Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 063/183] Btrfs: set plug for fsync Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 064/183] btrfs: Fix out of bounds access in btrfs_search_slot Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 065/183] Btrfs: fix scrub to repair raid6 corruption Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 066/183] btrfs: fail mount when sb flag is not in BTRFS_SUPER_FLAG_SUPP Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 067/183] Btrfs: fix unexpected EEXIST from btrfs_get_extent Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 068/183] Btrfs: raid56: fix race between merge_bio and rbio_orig_end_io Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 069/183] RDMA/cma: Check existence of netdevice during port validation Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 070/183] f2fs: avoid hungtask when GC encrypted block if io_bits is set Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 071/183] scsi: devinfo: fix format of the device list Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 072/183] scsi: fas216: fix sense buffer initialization Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 073/183] Input: stmfts - set IRQ_NOAUTOEN to the irq flag Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 074/183] HID: roccat: prevent an out of bounds read in kovaplus_profile_activated() Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 075/183] nfp: fix error return code in nfp_pci_probe() Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 076/183] block: Set BIO_TRACE_COMPLETION on new bio during split Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 077/183] bpf: test_maps: cleanup sockmaps when test ends Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 078/183] i40evf: Dont schedule reset_task when device is being removed Greg Kroah-Hartman
2018-04-25 10:34 ` [PATCH 4.14 079/183] i40evf: ignore link up if not running Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 080/183] platform/x86: thinkpad_acpi: suppress warning about palm detection Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 081/183] KVM: s390: vsie: use READ_ONCE to access some SCB fields Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 082/183] blk-mq-debugfs: dont allow write on attributes with seq_operations set Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 083/183] ASoC: rockchip: Use dummy_dai for rt5514 dsp dailink Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 084/183] igb: Allow to remove administratively set MAC on VFs Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 085/183] igb: Clear TXSTMP when ptp_tx_work() is timeout Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 086/183] fm10k: fix "failed to kill vid" message for VF Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 087/183] x86/hyperv: Stop suppressing X86_FEATURE_PCID Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 088/183] tty: serial: exar: Relocate sleep wake-up handling Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 089/183] device property: Define type of PROPERTY_ENRTY_*() macros Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 090/183] crypto: artpec6 - remove select on non-existing CRYPTO_SHA384 Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 091/183] RDMA/uverbs: Use an unambiguous errno for method not supported Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 092/183] jffs2: Fix use-after-free bug in jffs2_iget()s error handling path Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 093/183] ixgbe: dont set RXDCTL.RLPML for 82599 Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 094/183] i40e: program fragmented IPv4 filter input set Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 095/183] i40e: fix reported mask for ntuple filters Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 096/183] samples/bpf: Partially fixes the bpf.o build Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 097/183] powerpc/numa: Use ibm,max-associativity-domains to discover possible nodes Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 098/183] powerpc/numa: Ensure nodes initialized for hotplug Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 099/183] RDMA/mlx5: Avoid memory leak in case of XRCD dealloc failure Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 100/183] ntb_transport: Fix bug with max_mw_size parameter Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 101/183] gianfar: prevent integer wrapping in the rx handler Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 102/183] x86/hyperv: Check for required priviliges in hyperv_init() Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 103/183] netfilter: x_tables: fix pointer leaks to userspace Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 104/183] tcp_nv: fix potential integer overflow in tcpnv_acked Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 105/183] kvm: Map PFN-type memory regions as writable (if possible) Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 106/183] x86/kvm/vmx: do not use vm-exit instruction length for fast MMIO when running nested Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 107/183] fs/dax.c: release PMD lock even when there is no PMD support in DAX Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 108/183] ocfs2: return -EROFS to mount.ocfs2 if inode block is invalid Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 109/183] ocfs2/acl: use ip_xattr_sem to protect getting extended attribute Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 110/183] ocfs2: return error when we attempt to access a dirty bh in jbd2 Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 111/183] mm/mempolicy: fix the check of nodemask from user Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 112/183] mm/mempolicy: add nodes_empty check in SYSC_migrate_pages Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 113/183] asm-generic: provide generic_pmdp_establish() Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 114/183] sparc64: update pmdp_invalidate() to return old pmd value Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 115/183] mm: thp: use down_read_trylock() in khugepaged to avoid long block Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 116/183] mm: pin address_space before dereferencing it while isolating an LRU page Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 117/183] mm/fadvise: discard partial page if endbyte is also EOF Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 118/183] openvswitch: Remove padding from packet before L3+ conntrack processing Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 119/183] blk-mq: fix discard merge with scheduler attached Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 120/183] IB/hfi1: Re-order IRQ cleanup to address driver cleanup race Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 121/183] IB/hfi1: Fix for potential refcount leak in hfi1_open_file() Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 122/183] IB/ipoib: Fix for potential no-carrier state Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 123/183] IB/core: Map iWarp AH type to undefined in rdma_ah_find_type Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 124/183] drm/nouveau/pmu/fuc: dont use movw directly anymore Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 125/183] s390/eadm: fix CONFIG_BLOCK include dependency Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 126/183] netfilter: ipv6: nf_defrag: Kill frag queue on RFC2460 failure Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 127/183] x86/power: Fix swsusp_arch_resume prototype Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 128/183] x86/dumpstack: Avoid uninitlized variable Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 129/183] firmware: dmi_scan: Fix handling of empty DMI strings Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 130/183] ACPI: processor_perflib: Do not send _PPC change notification if not ready Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 131/183] ACPI / bus: Do not call _STA on battery devices with unmet dependencies Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 132/183] ACPI / scan: Use acpi_bus_get_status() to initialize ACPI_TYPE_DEVICE devs Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 133/183] bpf: fix selftests/bpf test_kmod.sh failure when CONFIG_BPF_JIT_ALWAYS_ON=y Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 134/183] MIPS: generic: Fix machine compatible matching Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 135/183] MIPS: TXx9: use IS_BUILTIN() for CONFIG_LEDS_CLASS Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 136/183] perf record: Fix period option handling Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 137/183] MIPS: Generic: Support GIC in EIC mode Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 138/183] perf evsel: Fix period/freq terms setup Greg Kroah-Hartman
2018-04-25 10:35 ` [PATCH 4.14 139/183] xen-netfront: Fix race between device setup and open Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 140/183] xen/grant-table: Use put_page instead of free_page Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 141/183] bpf: sockmap, fix leaking maps with attached but not detached progs Greg Kroah-Hartman
2018-04-25 10:36 ` Greg Kroah-Hartman [this message]
2018-04-25 10:36 ` [PATCH 4.14 143/183] arm64: spinlock: Fix theoretical trylock() A-B-A with LSE atomics Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 144/183] proc: fix /proc/*/map_files lookup Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 145/183] PM / domains: Fix up domain-idle-states OF parsing Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 146/183] cifs: silence compiler warnings showing up with gcc-8.0.0 Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 147/183] bcache: properly set task state in bch_writeback_thread() Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 148/183] bcache: fix for allocator and register thread race Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 149/183] bcache: fix for data collapse after re-attaching an attached device Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 150/183] bcache: return attach error when no cache set exist Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 151/183] cpufreq: intel_pstate: Enable HWP during system resume on CPU0 Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 152/183] selftests/ftrace: Add some missing glob checks Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 153/183] rxrpc: Dont put crypto buffers on the stack Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 154/183] svcrdma: Fix Read chunk round-up Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 155/183] net: Extra _get in declaration of arch_get_platform_mac_address Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 156/183] tools/libbpf: handle issues with bpf ELF objects containing .eh_frames Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 157/183] KVM: PPC: Book3S HV: Fix handling of secondary HPTEG in HPT resizing code Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 158/183] SUNRPC: Dont call __UDPX_INC_STATS() from a preemptible context Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 159/183] net: stmmac: discard disabled flags in interrupt status register Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 160/183] bpf: fix rlimit in reuseport net selftest Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 161/183] ACPI / EC: Restore polling during noirq suspend/resume phases Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 162/183] PM / wakeirq: Fix unbalanced IRQ enable for wakeirq Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 163/183] vfs/proc/kcore, x86/mm/kcore: Fix SMAP fault when dumping vsyscall user page Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 164/183] powerpc/mm/hash64: Zero PGD pages on allocation Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 165/183] x86/platform/UV: Fix GAM Range Table entries less than 1GB Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 166/183] locking/qspinlock: Ensure node->count is updated before initialising node Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 167/183] powerpc/powernv: IMC fix out of bounds memory access at shutdown Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 168/183] perf test: Fix test trace+probe_libc_inet_pton.sh for s390x Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 169/183] irqchip/gic-v3: Ignore disabled ITS nodes Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 170/183] cpumask: Make for_each_cpu_wrap() available on UP as well Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 171/183] irqchip/gic-v3: Change pr_debug message to pr_devel Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 172/183] RDMA/core: Reduce poll batch for direct cq polling Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 173/183] alarmtimer: Init nanosleep alarm timer on stack Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 174/183] netfilter: x_tables: cap allocations at 512 mbyte Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 175/183] netfilter: x_tables: add counters allocation wrapper Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 176/183] netfilter: compat: prepare xt_compat_init_offsets to return errors Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 177/183] netfilter: compat: reject huge allocation requests Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 178/183] netfilter: x_tables: limit allocation requests for blob rule heads Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 179/183] perf: Fix sample_max_stack maximum check Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 180/183] perf: Return proper values for user stack errors Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 181/183] RDMA/mlx5: Fix NULL dereference while accessing XRC_TGT QPs Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 182/183] Revert "KVM: X86: Fix SMRAM accessing even if VM is shutdown" Greg Kroah-Hartman
2018-04-25 10:36 ` [PATCH 4.14 183/183] mac80211_hwsim: fix use-after-free bug in hwsim_exit_net Greg Kroah-Hartman
2018-04-25 14:41 ` [PATCH 4.14 000/183] 4.14.37-stable review Guenter Roeck
2018-04-25 15:07   ` Greg Kroah-Hartman
2018-04-25 17:09     ` Guenter Roeck
2018-04-25 17:13       ` Greg Kroah-Hartman
2018-04-25 15:24 ` kernelci.org bot
2018-04-25 18:08 ` Nathan Chancellor
2018-04-26  6:59   ` Greg Kroah-Hartman
2018-04-25 18:36 ` Shuah Khan
2018-04-26  2:10 ` Dan Rue

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=20180425103248.257601277@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.levin@microsoft.com \
    --cc=davem@davemloft.net \
    --cc=dledford@redhat.com \
    --cc=guanglei.li@oracle.com \
    --cc=honglei.wang@oracle.com \
    --cc=junxiao.bi@oracle.com \
    --cc=leonro@mellanox.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=santosh.shilimkar@oracle.com \
    --cc=stable@vger.kernel.org \
    --cc=yanjun.zhu@oracle.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).