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+df0257c92ffd4fcc58cd@syzkaller.appspotmail.com,
Ying Xue <ying.xue@windriver.com>,
"David S. Miller" <davem@davemloft.net>,
Sasha Levin <alexander.levin@microsoft.com>
Subject: [PATCH 4.14 137/189] tipc: eliminate KMSAN uninit-value in strcmp complaint
Date: Mon, 18 Jun 2018 10:13:53 +0200 [thread overview]
Message-ID: <20180618081214.732369482@linuxfoundation.org> (raw)
In-Reply-To: <20180618081209.254234434@linuxfoundation.org>
4.14-stable review patch. If anyone has any objections, please let me know.
------------------
From: Ying Xue <ying.xue@windriver.com>
[ Upstream commit 94f6a80c0c11828cb7b3d79294459dd8d761ca89 ]
When we get link properties through netlink interface with
tipc_nl_node_get_link(), we don't validate TIPC_NLA_LINK_NAME
attribute at all, instead we directly use it. As a consequence,
KMSAN detected the TIPC_NLA_LINK_NAME attribute was an uninitialized
value, and then posted the following complaint:
==================================================================
BUG: KMSAN: uninit-value in strcmp+0xf7/0x160 lib/string.c:329
CPU: 1 PID: 4527 Comm: syz-executor655 Not tainted 4.16.0+ #87
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS
Google 01/01/2011
Call Trace:
__dump_stack lib/dump_stack.c:17 [inline]
dump_stack+0x185/0x1d0 lib/dump_stack.c:53
kmsan_report+0x142/0x240 mm/kmsan/kmsan.c:1067
__msan_warning_32+0x6c/0xb0 mm/kmsan/kmsan_instr.c:683
strcmp+0xf7/0x160 lib/string.c:329
tipc_nl_node_get_link+0x220/0x6f0 net/tipc/node.c:1881
genl_family_rcv_msg net/netlink/genetlink.c:599 [inline]
genl_rcv_msg+0x1686/0x1810 net/netlink/genetlink.c:624
netlink_rcv_skb+0x378/0x600 net/netlink/af_netlink.c:2447
genl_rcv+0x63/0x80 net/netlink/genetlink.c:635
netlink_unicast_kernel net/netlink/af_netlink.c:1311 [inline]
netlink_unicast+0x166b/0x1740 net/netlink/af_netlink.c:1337
netlink_sendmsg+0x1048/0x1310 net/netlink/af_netlink.c:1900
sock_sendmsg_nosec net/socket.c:630 [inline]
sock_sendmsg net/socket.c:640 [inline]
___sys_sendmsg+0xec0/0x1310 net/socket.c:2046
__sys_sendmsg net/socket.c:2080 [inline]
SYSC_sendmsg+0x2a3/0x3d0 net/socket.c:2091
SyS_sendmsg+0x54/0x80 net/socket.c:2087
do_syscall_64+0x309/0x430 arch/x86/entry/common.c:287
entry_SYSCALL_64_after_hwframe+0x3d/0xa2
RIP: 0033:0x445589
RSP: 002b:00007fb7ee66cdb8 EFLAGS: 00000246 ORIG_RAX: 000000000000002e
RAX: ffffffffffffffda RBX: 00000000006dac24 RCX: 0000000000445589
RDX: 0000000000000000 RSI: 0000000020023000 RDI: 0000000000000003
RBP: 00000000006dac20 R08: 0000000000000000 R09: 0000000000000000
R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000
R13: 00007fffa2bf3f3f R14: 00007fb7ee66d9c0 R15: 0000000000000001
Uninit was created at:
kmsan_save_stack_with_flags mm/kmsan/kmsan.c:278 [inline]
kmsan_internal_poison_shadow+0xb8/0x1b0 mm/kmsan/kmsan.c:188
kmsan_kmalloc+0x94/0x100 mm/kmsan/kmsan.c:314
kmsan_slab_alloc+0x11/0x20 mm/kmsan/kmsan.c:321
slab_post_alloc_hook mm/slab.h:445 [inline]
slab_alloc_node mm/slub.c:2737 [inline]
__kmalloc_node_track_caller+0xaed/0x11c0 mm/slub.c:4369
__kmalloc_reserve net/core/skbuff.c:138 [inline]
__alloc_skb+0x2cf/0x9f0 net/core/skbuff.c:206
alloc_skb include/linux/skbuff.h:984 [inline]
netlink_alloc_large_skb net/netlink/af_netlink.c:1183 [inline]
netlink_sendmsg+0x9a6/0x1310 net/netlink/af_netlink.c:1875
sock_sendmsg_nosec net/socket.c:630 [inline]
sock_sendmsg net/socket.c:640 [inline]
___sys_sendmsg+0xec0/0x1310 net/socket.c:2046
__sys_sendmsg net/socket.c:2080 [inline]
SYSC_sendmsg+0x2a3/0x3d0 net/socket.c:2091
SyS_sendmsg+0x54/0x80 net/socket.c:2087
do_syscall_64+0x309/0x430 arch/x86/entry/common.c:287
entry_SYSCALL_64_after_hwframe+0x3d/0xa2
==================================================================
To quiet the complaint, TIPC_NLA_LINK_NAME attribute has been
validated in tipc_nl_node_get_link() before it's used.
Reported-by: syzbot+df0257c92ffd4fcc58cd@syzkaller.appspotmail.com
Signed-off-by: Ying Xue <ying.xue@windriver.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/tipc/node.c | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
--- a/net/tipc/node.c
+++ b/net/tipc/node.c
@@ -1831,6 +1831,7 @@ out:
int tipc_nl_node_get_link(struct sk_buff *skb, struct genl_info *info)
{
struct net *net = genl_info_net(info);
+ struct nlattr *attrs[TIPC_NLA_LINK_MAX + 1];
struct tipc_nl_msg msg;
char *name;
int err;
@@ -1838,9 +1839,19 @@ int tipc_nl_node_get_link(struct sk_buff
msg.portid = info->snd_portid;
msg.seq = info->snd_seq;
- if (!info->attrs[TIPC_NLA_LINK_NAME])
+ if (!info->attrs[TIPC_NLA_LINK])
return -EINVAL;
- name = nla_data(info->attrs[TIPC_NLA_LINK_NAME]);
+
+ err = nla_parse_nested(attrs, TIPC_NLA_LINK_MAX,
+ info->attrs[TIPC_NLA_LINK],
+ tipc_nl_link_policy, info->extack);
+ if (err)
+ return err;
+
+ if (!attrs[TIPC_NLA_LINK_NAME])
+ return -EINVAL;
+
+ name = nla_data(attrs[TIPC_NLA_LINK_NAME]);
msg.skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
if (!msg.skb)
next prev parent reply other threads:[~2018-06-18 8:37 UTC|newest]
Thread overview: 187+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-18 8:11 [PATCH 4.14 000/189] 4.14.51-stable review Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 001/189] clocksource/drivers/imx-tpm: Correct some registers operation flow Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 002/189] Input: synaptics-rmi4 - fix an unchecked out of memory error path Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 003/189] KVM: X86: fix incorrect reference of trace_kvm_pi_irte_update Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 004/189] x86: Add check for APIC access address for vmentry of L2 guests Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 005/189] MIPS: io: Prevent compiler reordering writeX() Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 006/189] nfp: ignore signals when communicating with management FW Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 008/189] fsnotify: fix ignore mask logic in send_to_group() Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 009/189] MIPS: io: Add barrier after register read in readX() Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 010/189] s390/smsgiucv: disable SMSG on module unload Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 011/189] isofs: fix potential memory leak in mount option parsing Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 012/189] MIPS: dts: Boston: Fix PCI bus dtc warnings: Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 013/189] spi: sh-msiof: Fix bit field overflow writes to TSCR/RSCR Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 014/189] doc: Add vendor prefix for Kieback & Peter GmbH Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 015/189] dt-bindings: pinctrl: sunxi: Fix reference to driver Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 016/189] dt-bindings: serial: sh-sci: Add support for r8a77965 (H)SCIF Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 017/189] dt-bindings: dmaengine: rcar-dmac: document R8A77965 support Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 018/189] clk: honor CLK_MUX_ROUND_CLOSEST in generic clk mux Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 019/189] ASoC: rt5514: Add the missing register in the readable table Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 020/189] eCryptfs: dont pass up plaintext names when using filename encryption Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 021/189] soc: bcm: raspberrypi-power: Fix use of __packed Greg Kroah-Hartman
2018-06-18 8:11 ` [PATCH 4.14 023/189] PCI: kirin: Fix reset gpio name Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 024/189] ASoC: topology: Fix bugs of freeing soc topology Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 025/189] xen: xenbus_dev_frontend: Really return response string Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 026/189] ASoC: topology: Check widget kcontrols before deref Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 027/189] spi: cadence: Add usleep_range() for cdns_spi_fill_tx_fifo() Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 028/189] blkcg: dont hold blkcg lock when deactivating policy Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 029/189] tipc: fix infinite loop when dumping link monitor summary Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 030/189] scsi: iscsi: respond to netlink with unicast when appropriate Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 031/189] scsi: megaraid_sas: Do not log an error if FW successfully initializes Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 032/189] scsi: target: fix crash with iscsi target and dvd Greg Kroah-Hartman
2018-06-18 8:12 ` Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 033/189] netfilter: nf_tables: NAT chain and extensions require NF_TABLES Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 034/189] netfilter: nf_tables: fix out-of-bounds in nft_chain_commit_update Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 035/189] ASoC: msm8916-wcd-analog: use threaded context for mbhc events Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 036/189] drm/msm: Fix possible null dereference on failure of get_pages() Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 037/189] drm/msm/dsi: use correct enum in dsi_get_cmd_fmt Greg Kroah-Hartman
[not found] ` <20180618081209.254234434-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>
2018-06-18 8:12 ` [PATCH 4.14 038/189] drm/msm: dont deref error pointer in the msm_fbdev_create error path Greg Kroah-Hartman
2018-06-18 8:12 ` Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 039/189] blkcg: init root blkcg_gq under lock Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 040/189] net: hns: Avoid action name truncation Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 041/189] vfs: Undo an overly zealous MS_RDONLY -> SB_RDONLY conversion Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 042/189] parisc: time: Convert read_persistent_clock() to read_persistent_clock64() Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 043/189] scsi: storvsc: Set up correct queue depth values for IDE devices Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 044/189] scsi: isci: Fix infinite loop in while loop Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 045/189] mm, pagemap: fix swap offset value for PMD migration entry Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 046/189] proc: revalidate kernel thread inodes to root:root Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 047/189] kexec_file: do not add extra alignment to efi memmap Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 048/189] mm: memcg: add __GFP_NOWARN in __memcg_schedule_kmem_cache_create() Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 049/189] usb: typec: ucsi: fix tracepoint related build error Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 050/189] s390/qeth: use Read device to query hypervisor for MAC Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 051/189] ACPI / PM: Blacklist Low Power S0 Idle _DSM for ThinkPad X1 Tablet(2016) Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 052/189] dt-bindings: meson-uart: DT fix s/clocks-names/clock-names/ Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 053/189] powerpc/powernv/memtrace: Let the arch hotunplug code flush cache Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 054/189] net: phy: marvell: clear wol event before setting it Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 055/189] ARM: dts: da850: fix W=1 warnings with pinmux node Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 056/189] ACPI / watchdog: Prefer iTCO_wdt on Lenovo Z50-70 Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 057/189] drm/amdkfd: fix clock counter retrieval for node without GPU Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 058/189] thermal: int3403_thermal: Fix NULL pointer deref on module load / probe Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 059/189] net: ethtool: Add missing kernel doc for FEC parameters Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 060/189] arm64: ptrace: remove addr_limit manipulation Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 061/189] HID: lenovo: Add support for IBM/Lenovo Scrollpoint mice Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 062/189] HID: wacom: Release device resource data obtained by devres_alloc() Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 063/189] selftests: ftrace: Add a testcase for multiple actions on trigger Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 065/189] perf/x86/intel: Dont enable freeze-on-smi for PerfMon V1 Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 066/189] remoteproc: qcom: Fix potential device node leaks Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 067/189] rpmsg: added MODULE_ALIAS for rpmsg_char Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 068/189] HID: intel-ish-hid: use put_device() instead of kfree() Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 069/189] blk-mq: fix sysfs inflight counter Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 070/189] arm64: fix possible spectre-v1 in ptrace_hbp_get_event() Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 071/189] KVM: arm/arm64: vgic: fix possible spectre-v1 in vgic_mmio_read_apr() Greg Kroah-Hartman
2018-06-18 8:12 ` Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 072/189] libahci: Allow drivers to override stop_engine Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 073/189] ata: ahci: mvebu: override ahci_stop_engine for mvebu AHCI Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 074/189] x86/cpu/intel: Add missing TLB cpuid values Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 076/189] i2c: sprd: Prevent i2c accesses after suspend is called Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 077/189] i2c: sprd: Fix the i2c count issue Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 078/189] tipc: fix bug in function tipc_nl_node_dump_monitor Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 079/189] nvme: depend on INFINIBAND_ADDR_TRANS Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 080/189] nvmet-rdma: " Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 081/189] ib_srpt: " Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 082/189] ib_srp: " Greg Kroah-Hartman
2018-06-18 8:12 ` [PATCH 4.14 083/189] IB: make INFINIBAND_ADDR_TRANS configurable Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 084/189] IB/uverbs: Fix validating mandatory attributes Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 085/189] RDMA/cma: Fix use after destroy access to net namespace for IPoIB Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 086/189] RDMA/iwpm: fix memory leak on map_info Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 087/189] IB/rxe: add RXE_START_MASK for rxe_opcode IB_OPCODE_RC_SEND_ONLY_INV Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 088/189] IB/rxe: avoid double kfree_skb Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 089/189] <linux/stringhash.h>: fix end_name_hash() for 64bit long Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 091/189] ARM: davinci: board-da830-evm: fix GPIO lookup for MMC/SD Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 092/189] ARM: davinci: board-da850-evm: " Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 093/189] ARM: davinci: board-omapl138-hawk: fix GPIO numbers for MMC/SD lookup Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 094/189] ARM: davinci: board-dm355-evm: fix broken networking Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 095/189] dt-bindings: panel: lvds: Fix path to display timing bindings Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 096/189] ARM: OMAP2+: powerdomain: use raw_smp_processor_id() for trace Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 097/189] ARM: dts: logicpd-som-lv: Fix WL127x Startup Issues Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 098/189] ARM: dts: logicpd-som-lv: Fix Audio Mute Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 099/189] Input: atmel_mxt_ts - fix the firmware update Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 100/189] hexagon: add memset_io() helper Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 101/189] hexagon: export csum_partial_copy_nocheck Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 102/189] scsi: vmw-pvscsi: return DID_BUS_BUSY for adapter-initated aborts Greg Kroah-Hartman
2018-06-18 18:32 ` Jim Gill
2018-06-18 8:13 ` [PATCH 4.14 103/189] bpf, x64: fix memleak when not converging after image Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 104/189] parisc: drivers.c: Fix section mismatches Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 105/189] stop_machine, sched: Fix migrate_swap() vs. active_balance() deadlock Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 106/189] kthread, sched/wait: Fix kthread_parkme() wait-loop Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 107/189] arm64: tegra: Make BCM89610 PHY interrupt as active low Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 108/189] iommu/vt-d: fix shift-out-of-bounds in bug checking Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 109/189] nvme: fix potential memory leak in option parsing Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 110/189] nvme: Set integrity flag for user passthrough commands Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 111/189] ARM: OMAP1: ams-delta: fix deferred_fiq handler Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 112/189] smc: fix sendpage() call Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 113/189] IB/hfi1 Use correct type for num_user_context Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 114/189] IB/hfi1: Fix memory leak in exception path in get_irq_affinity() Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 115/189] RDMA/cma: Do not query GID during QP state transition to RTR Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 116/189] spi: bcm2835aux: ensure interrupts are enabled for shared handler Greg Kroah-Hartman
2018-06-18 8:13 ` Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 117/189] sched/core: Introduce set_special_state() Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 118/189] sh: fix build failure for J2 cpu with SMP disabled Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 119/189] tee: check shm references are consistent in offset/size Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 120/189] powerpc/trace/syscalls: Update syscall name matching logic Greg Kroah-Hartman
2018-06-19 2:43 ` Naveen N. Rao
2018-06-20 18:48 ` Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 121/189] powerpc/trace/syscalls: Update syscall name matching logic to account for ppc_ prefix Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 122/189] mac80211: Adjust SAE authentication timeout Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 123/189] drm/omap: silence unititialized variable warning Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 124/189] drm/omap: fix uninitialized ret variable Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 125/189] drm/omap: fix possible NULL ref issue in tiler_reserve_2d Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 126/189] drm/omap: check return value from soc_device_match Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 127/189] drm/omap: handle alloc failures in omap_connector Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 130/189] mac80211: use timeout from the AddBA response instead of the request Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 131/189] x86/xen: Reset VCPU0 info pointer after shared_info remap Greg Kroah-Hartman
2018-06-18 8:13 ` Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 132/189] net: aquantia: driver should correctly declare vlan_features bits Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 133/189] can: dev: increase bus-off message severity Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 134/189] arm64: Add MIDR encoding for NVIDIA CPUs Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 135/189] cifs: smb2ops: Fix listxattr() when there are no EAs Greg Kroah-Hartman
2018-06-18 8:13 ` Greg Kroah-Hartman [this message]
2018-06-18 8:13 ` [PATCH 4.14 138/189] qed: Fix l2 initializations over iWARP personality Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 139/189] qede: Fix gfp flags sent to rdma event node allocation Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 140/189] rxrpc: Fix error reception on AF_INET6 sockets Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 141/189] rxrpc: Fix the min security level for kernel calls Greg Kroah-Hartman
2018-06-18 8:13 ` [PATCH 4.14 143/189] x86: Delay skip of emulated hypercall instruction Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 144/189] ixgbe: return error on unsupported SFP module when resetting Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 145/189] net sched actions: fix invalid pointer dereferencing if skbedit flags missing Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 146/189] init: fix false positives in W+X checking Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 147/189] proc/kcore: dont bounds check against address 0 Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 148/189] ocfs2: take inode cluster lock before moving reflinked inode from orphan dir Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 149/189] kprobes/x86: Prohibit probing on exception masking instructions Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 150/189] uprobes/x86: Prohibit probing on MOV SS instruction Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 151/189] objtool, kprobes/x86: Sync the latest <asm/insn.h> header with tools/objtool/arch/x86/include/asm/insn.h Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 152/189] x86/pkeys/selftests: Adjust the self-test to fresh distros that export the pkeys ABI Greg Kroah-Hartman
2018-06-18 8:14 ` Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 153/189] x86/mpx/selftests: Adjust the self-test to fresh distros that export the MPX ABI Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 154/189] x86/selftests: Add mov_to_ss test Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 155/189] x86/pkeys/selftests: Give better unexpected fault error messages Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 156/189] x86/pkeys/selftests: Stop using assert() Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 157/189] x86/pkeys/selftests: Remove dead debugging code, fix dprint_in_signal Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 158/189] x86/pkeys/selftests: Allow faults on unknown keys Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 159/189] x86/pkeys/selftests: Factor out "instruction page" Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 160/189] x86/pkeys/selftests: Add PROT_EXEC test Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 161/189] x86/pkeys/selftests: Fix pkey exhaustion test off-by-one Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 162/189] x86/pkeys/selftests: Fix pointer math Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 163/189] x86/pkeys/selftests: Save off prot for allocations Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 164/189] x86/pkeys/selftests: Add a test for pkey 0 Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 165/189] mtd: Fix comparison in map_word_andequal() Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 166/189] afs: Fix the non-encryption of calls Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 168/189] ARM: keystone: fix platform_domain_notifier array overrun Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 169/189] i2c: pmcmsp: return message count on master_xfer success Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 170/189] i2c: pmcmsp: fix error return from master_xfer Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 171/189] i2c: viperboard: return message count on master_xfer success Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 172/189] ARM: davinci: dm646x: fix timer interrupt generation Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 173/189] ARM: davinci: board-dm646x-evm: pass correct I2C adapter id for VPIF Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 174/189] ARM: davinci: board-dm646x-evm: set VPIF capture card name Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 175/189] clk: imx6ull: use OSC clock during AXI rate change Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 176/189] locking/rwsem: Add a new RWSEM_ANONYMOUSLY_OWNED flag Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 177/189] locking/percpu-rwsem: Annotate rwsem ownership transfer by setting RWSEM_OWNER_UNKNOWN Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 178/189] drm/dumb-buffers: Integer overflow in drm_mode_create_ioctl() Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 181/189] parisc: Move setup_profiling_timer() out of init section Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 182/189] efi/libstub/arm64: Handle randomized TEXT_OFFSET Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 185/189] ARM: kexec: fix kdump register saving on panic() Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 186/189] Revert "Btrfs: fix scrub to repair raid6 corruption" Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 187/189] Btrfs: fix scrub to repair raid6 corruption Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 188/189] Btrfs: make raid6 rebuild retry more Greg Kroah-Hartman
2018-06-18 8:14 ` [PATCH 4.14 189/189] tcp: do not overshoot window_clamp in tcp_rcv_space_adjust() Greg Kroah-Hartman
2018-06-18 18:29 ` [PATCH 4.14 000/189] 4.14.51-stable review Guenter Roeck
2018-06-19 5:53 ` 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=20180618081214.732369482@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=alexander.levin@microsoft.com \
--cc=davem@davemloft.net \
--cc=linux-kernel@vger.kernel.org \
--cc=stable@vger.kernel.org \
--cc=syzbot+df0257c92ffd4fcc58cd@syzkaller.appspotmail.com \
--cc=ying.xue@windriver.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 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.