From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Yotam Gigi <yotamg@mellanox.com>,
Jiri Pirko <jiri@mellanox.com>,
Jamal Hadi Salim <jhs@mojatatu.com>,
Simon Horman <simon.horman@netronome.com>,
Roopa Prabhu <roopa@cumulusnetworks.com>,
Nikolay Aleksandrov <nikolay@cumulusnetworks.com>,
"David S. Miller" <davem@davemloft.net>
Subject: [PATCH 4.14 170/209] net: psample: fix skb_over_panic
Date: Wed, 4 Dec 2019 18:56:22 +0100 [thread overview]
Message-ID: <20191204175335.182835822@linuxfoundation.org> (raw)
In-Reply-To: <20191204175321.609072813@linuxfoundation.org>
From: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
[ Upstream commit 7eb9d7675c08937cd11d32b0b40442d4d731c5ee ]
We need to calculate the skb size correctly otherwise we risk triggering
skb_over_panic[1]. The issue is that data_len is added to the skb in a
nl attribute, but we don't account for its header size (nlattr 4 bytes)
and alignment. We account for it when calculating the total size in
the > PSAMPLE_MAX_PACKET_SIZE comparison correctly, but not when
allocating after that. The fix is simple - use nla_total_size() for
data_len when allocating.
To reproduce:
$ tc qdisc add dev eth1 clsact
$ tc filter add dev eth1 egress matchall action sample rate 1 group 1 trunc 129
$ mausezahn eth1 -b bcast -a rand -c 1 -p 129
< skb_over_panic BUG(), tail is 4 bytes past skb->end >
[1] Trace:
[ 50.459526][ T3480] skbuff: skb_over_panic: text:(____ptrval____) len:196 put:136 head:(____ptrval____) data:(____ptrval____) tail:0xc4 end:0xc0 dev:<NULL>
[ 50.474339][ T3480] ------------[ cut here ]------------
[ 50.481132][ T3480] kernel BUG at net/core/skbuff.c:108!
[ 50.486059][ T3480] invalid opcode: 0000 [#1] PREEMPT SMP
[ 50.489463][ T3480] CPU: 3 PID: 3480 Comm: mausezahn Not tainted 5.4.0-rc7 #108
[ 50.492844][ T3480] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.12.0-2.fc30 04/01/2014
[ 50.496551][ T3480] RIP: 0010:skb_panic+0x79/0x7b
[ 50.498261][ T3480] Code: bc 00 00 00 41 57 4c 89 e6 48 c7 c7 90 29 9a 83 4c 8b 8b c0 00 00 00 50 8b 83 b8 00 00 00 50 ff b3 c8 00 00 00 e8 ae ef c0 fe <0f> 0b e8 2f df c8 fe 48 8b 55 08 44 89 f6 4c 89 e7 48 c7 c1 a0 22
[ 50.504111][ T3480] RSP: 0018:ffffc90000447a10 EFLAGS: 00010282
[ 50.505835][ T3480] RAX: 0000000000000087 RBX: ffff888039317d00 RCX: 0000000000000000
[ 50.507900][ T3480] RDX: 0000000000000000 RSI: ffffffff812716e1 RDI: 00000000ffffffff
[ 50.509820][ T3480] RBP: ffffc90000447a60 R08: 0000000000000001 R09: 0000000000000000
[ 50.511735][ T3480] R10: ffffffff81d4f940 R11: 0000000000000000 R12: ffffffff834a22b0
[ 50.513494][ T3480] R13: ffffffff82c10433 R14: 0000000000000088 R15: ffffffff838a8084
[ 50.515222][ T3480] FS: 00007f3536462700(0000) GS:ffff88803eac0000(0000) knlGS:0000000000000000
[ 50.517135][ T3480] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 50.518583][ T3480] CR2: 0000000000442008 CR3: 000000003b222000 CR4: 00000000000006e0
[ 50.520723][ T3480] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[ 50.522709][ T3480] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[ 50.524450][ T3480] Call Trace:
[ 50.525214][ T3480] skb_put.cold+0x1b/0x1b
[ 50.526171][ T3480] psample_sample_packet+0x1d3/0x340
[ 50.527307][ T3480] tcf_sample_act+0x178/0x250
[ 50.528339][ T3480] tcf_action_exec+0xb1/0x190
[ 50.529354][ T3480] mall_classify+0x67/0x90
[ 50.530332][ T3480] tcf_classify+0x72/0x160
[ 50.531286][ T3480] __dev_queue_xmit+0x3db/0xd50
[ 50.532327][ T3480] dev_queue_xmit+0x18/0x20
[ 50.533299][ T3480] packet_sendmsg+0xee7/0x2090
[ 50.534331][ T3480] sock_sendmsg+0x54/0x70
[ 50.535271][ T3480] __sys_sendto+0x148/0x1f0
[ 50.536252][ T3480] ? tomoyo_file_ioctl+0x23/0x30
[ 50.537334][ T3480] ? ksys_ioctl+0x5e/0xb0
[ 50.540068][ T3480] __x64_sys_sendto+0x2a/0x30
[ 50.542810][ T3480] do_syscall_64+0x73/0x1f0
[ 50.545383][ T3480] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 50.548477][ T3480] RIP: 0033:0x7f35357d6fb3
[ 50.551020][ T3480] Code: 48 8b 0d 18 90 20 00 f7 d8 64 89 01 48 83 c8 ff c3 66 0f 1f 44 00 00 83 3d f9 d3 20 00 00 75 13 49 89 ca b8 2c 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 34 c3 48 83 ec 08 e8 eb f6 ff ff 48 89 04 24
[ 50.558547][ T3480] RSP: 002b:00007ffe0c7212c8 EFLAGS: 00000246 ORIG_RAX: 000000000000002c
[ 50.561870][ T3480] RAX: ffffffffffffffda RBX: 0000000001dac010 RCX: 00007f35357d6fb3
[ 50.565142][ T3480] RDX: 0000000000000082 RSI: 0000000001dac2a2 RDI: 0000000000000003
[ 50.568469][ T3480] RBP: 00007ffe0c7212f0 R08: 00007ffe0c7212d0 R09: 0000000000000014
[ 50.571731][ T3480] R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000082
[ 50.574961][ T3480] R13: 0000000001dac2a2 R14: 0000000000000001 R15: 0000000000000003
[ 50.578170][ T3480] Modules linked in: sch_ingress virtio_net
[ 50.580976][ T3480] ---[ end trace 61a515626a595af6 ]---
CC: Yotam Gigi <yotamg@mellanox.com>
CC: Jiri Pirko <jiri@mellanox.com>
CC: Jamal Hadi Salim <jhs@mojatatu.com>
CC: Simon Horman <simon.horman@netronome.com>
CC: Roopa Prabhu <roopa@cumulusnetworks.com>
Fixes: 6ae0a6286171 ("net: Introduce psample, a new genetlink channel for packet sampling")
Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
net/psample/psample.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/net/psample/psample.c
+++ b/net/psample/psample.c
@@ -223,7 +223,7 @@ void psample_sample_packet(struct psampl
data_len = PSAMPLE_MAX_PACKET_SIZE - meta_len - NLA_HDRLEN
- NLA_ALIGNTO;
- nl_skb = genlmsg_new(meta_len + data_len, GFP_ATOMIC);
+ nl_skb = genlmsg_new(meta_len + nla_total_size(data_len), GFP_ATOMIC);
if (unlikely(!nl_skb))
return;
next prev parent reply other threads:[~2019-12-04 18:20 UTC|newest]
Thread overview: 223+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-04 17:53 [PATCH 4.14 000/209] 4.14.158-stable review Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 001/209] clk: meson: gxbb: let sar_adc_clk_div set the parent clock rate Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 002/209] ASoC: msm8916-wcd-analog: Fix RX1 selection in RDAC2 MUX Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 003/209] ASoC: compress: fix unsigned integer overflow check Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 004/209] reset: Fix memory leak in reset_control_array_put() Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 005/209] ASoC: kirkwood: fix external clock probe defer Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 006/209] clk: samsung: exynos5420: Preserve PLL configuration during suspend/resume Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 007/209] reset: fix reset_control_ops kerneldoc comment Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 008/209] clk: at91: avoid sleeping early Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 009/209] clk: sunxi-ng: a80: fix the zeroing of bits 16 and 18 Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 010/209] idr: Fix idr_alloc_u32 on 32-bit systems Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 011/209] x86/resctrl: Prevent NULL pointer dereference when reading mondata Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 012/209] clk: ti: dra7-atl-clock: Remove ti_clk_add_alias call Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 013/209] net: fec: add missed clk_disable_unprepare in remove Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 014/209] bridge: ebtables: dont crash when using dnat target in output chains Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 015/209] can: peak_usb: report bus recovery as well Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 016/209] can: c_can: D_CAN: c_can_chip_config(): perform a sofware reset on open Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 017/209] can: rx-offload: can_rx_offload_queue_tail(): fix error handling, avoid skb mem leak Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 018/209] can: rx-offload: can_rx_offload_offload_one(): do not increase the skb_queue beyond skb_queue_len_max Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 019/209] can: rx-offload: can_rx_offload_offload_one(): increment rx_fifo_errors on queue overflow or OOM Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 020/209] can: rx-offload: can_rx_offload_offload_one(): use ERR_PTR() to propagate error value in case of errors Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 021/209] can: rx-offload: can_rx_offload_irq_offload_timestamp(): continue on error Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 022/209] can: rx-offload: can_rx_offload_irq_offload_fifo(): " Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 023/209] watchdog: meson: Fix the wrong value of left time Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 024/209] scripts/gdb: fix debugging modules compiled with hot/cold partitioning Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 025/209] net: bcmgenet: reapply manual settings to the PHY Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 026/209] ceph: return -EINVAL if given fsc mount option on kernel w/o support Greg Kroah-Hartman
2019-12-04 17:53 ` [PATCH 4.14 027/209] mac80211: fix station inactive_time shortly after boot Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 028/209] block: drbd: remove a stray unlock in __drbd_send_protocol() Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 029/209] pwm: bcm-iproc: Prevent unloading the driver module while in use Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 030/209] scsi: lpfc: Fix kernel Oops due to null pring pointers Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 031/209] scsi: lpfc: Fix dif and first burst use in write commands Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 032/209] ARM: dts: Fix up SQ201 flash access Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 033/209] ARM: debug-imx: only define DEBUG_IMX_UART_PORT if needed Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 034/209] ARM: dts: imx53-voipac-dmm-668: Fix memory node duplication Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 035/209] parisc: Fix serio address output Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 036/209] parisc: Fix HP SDC hpa " Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 037/209] arm64: mm: Prevent mismatched 52-bit VA support Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 038/209] arm64: smp: Handle errors reported by the firmware Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 039/209] ARM: OMAP1: fix USB configuration for device-only setups Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 040/209] RDMA/vmw_pvrdma: Use atomic memory allocation in create AH Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 041/209] PM / AVS: SmartReflex: NULL check before some freeing functions is not needed Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 042/209] ARM: ks8695: fix section mismatch warning Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 043/209] ACPI / LPSS: Ignore acpi_device_fix_up_power() return value Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 044/209] scsi: lpfc: Enable Management features for IF_TYPE=6 Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 045/209] crypto: user - support incremental algorithm dumps Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 046/209] mwifiex: fix potential NULL dereference and use after free Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 047/209] mwifiex: debugfs: correct histogram spacing, formatting Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 048/209] rtl818x: fix potential use after free Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 049/209] xfs: require both realtime inodes to mount Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 050/209] ubi: Put MTD device after it is not used Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 051/209] ubi: Do not drop UBI device reference before using Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 052/209] microblaze: adjust the help to the real behavior Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 053/209] microblaze: move "... is ready" messages to arch/microblaze/Makefile Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 054/209] iwlwifi: move iwl_nvm_check_version() into dvm Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 055/209] gpiolib: Fix return value of gpio_to_desc() stub if !GPIOLIB Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 056/209] kvm: vmx: Set IA32_TSC_AUX for legacy mode guests Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 057/209] VSOCK: bind to random port for VMADDR_PORT_ANY Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 058/209] mmc: meson-gx: make sure the descriptor is stopped on errors Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 059/209] mtd: rawnand: sunxi: Write pageprog related opcodes to WCMD_SET Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 060/209] btrfs: only track ref_heads in delayed_ref_updates Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 061/209] HID: intel-ish-hid: fixes incorrect error handling Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 062/209] serial: 8250: Rate limit serial port rx interrupts during input overruns Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 063/209] kprobes/x86/xen: blacklist non-attachable xen interrupt functions Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 064/209] xen/pciback: Check dev_data before using it Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 065/209] vfio-mdev/samples: Use u8 instead of char for handle functions Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 066/209] pinctrl: xway: fix gpio-hog related boot issues Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 067/209] net/mlx5: Continue driver initialization despite debugfs failure Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 068/209] exofs_mount(): fix leaks on failure exits Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 069/209] bnxt_en: Return linux standard errors in bnxt_ethtool.c Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 070/209] bnxt_en: query force speeds before disabling autoneg mode Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 071/209] KVM: s390: unregister debug feature on failing arch init Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 072/209] pinctrl: sh-pfc: sh7264: Fix PFCR3 and PFCR0 register configuration Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 073/209] pinctrl: sh-pfc: sh7734: Fix shifted values in IPSR10 Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 074/209] HID: doc: fix wrong data structure reference for UHID_OUTPUT Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 075/209] dm flakey: Properly corrupt multi-page bios Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 076/209] gfs2: take jdata unstuff into account in do_grow Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 077/209] xfs: Align compat attrlist_by_handle with native implementation Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 078/209] xfs: Fix bulkstat compat ioctls on x32 userspace Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 079/209] IB/qib: Fix an error code in qib_sdma_verbs_send() Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 080/209] clocksource/drivers/fttmr010: Fix invalid interrupt register access Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 081/209] vxlan: Fix error path in __vxlan_dev_create() Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 082/209] powerpc/book3s/32: fix number of bats in p/v_block_mapped() Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 083/209] powerpc/xmon: fix dump_segments() Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 084/209] drivers/regulator: fix a missing check of return value Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 085/209] Bluetooth: hci_bcm: Handle specific unknown packets after firmware loading Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 086/209] serial: max310x: Fix tx_empty() callback Greg Kroah-Hartman
2019-12-04 17:54 ` [PATCH 4.14 087/209] openrisc: Fix broken paths to arch/or32 Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 088/209] RDMA/srp: Propagate ib_post_send() failures to the SCSI mid-layer Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 089/209] scsi: qla2xxx: deadlock by configfs_depend_item Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 090/209] scsi: csiostor: fix incorrect dma device in case of vport Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 091/209] ath6kl: Only use match sets when firmware supports it Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 092/209] ath6kl: Fix off by one error in scan completion Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 093/209] powerpc/perf: Fix unit_sel/cache_sel checks Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 094/209] powerpc/prom: fix early DEBUG messages Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 095/209] powerpc/mm: Make NULL pointer deferences explicit on bad page faults Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 096/209] powerpc/44x/bamboo: Fix PCI range Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 097/209] vfio/spapr_tce: Get rid of possible infinite loop Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 098/209] powerpc/powernv/eeh/npu: Fix uninitialized variables in opal_pci_eeh_freeze_status Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 099/209] drbd: ignore "all zero" peer volume sizes in handshake Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 100/209] drbd: reject attach of unsuitable uuids even if connected Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 101/209] drbd: do not block when adjusting "disk-options" while IO is frozen Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 102/209] drbd: fix print_st_err()s prototype to match the definition Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 103/209] IB/rxe: Make counters thread safe Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 104/209] regulator: tps65910: fix a missing check of return value Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 105/209] powerpc/83xx: handle machine check caused by watchdog timer Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 106/209] powerpc/pseries: Fix node leak in update_lmb_associativity_index() Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 107/209] crypto: mxc-scc - fix build warnings on ARM64 Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 108/209] pwm: clps711x: Fix period calculation Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 109/209] net/netlink_compat: Fix a missing check of nla_parse_nested Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 110/209] net/net_namespace: Check the return value of register_pernet_subsys() Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 111/209] f2fs: fix to dirty inode synchronously Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 112/209] um: Make GCOV depend on !KCOV Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 113/209] net: (cpts) fix a missing check of clk_prepare Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 114/209] net: stmicro: " Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 115/209] net: dsa: bcm_sf2: Propagate error value from mdio_write Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 116/209] atl1e: checking the status of atl1e_write_phy_reg Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 117/209] tipc: fix a missing check of genlmsg_put Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 118/209] net/wan/fsl_ucc_hdlc: Avoid double free in ucc_hdlc_probe() Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 119/209] ocfs2: clear journal dirty flag after shutdown journal Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 120/209] vmscan: return NODE_RECLAIM_NOSCAN in node_reclaim() when CONFIG_NUMA is n Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 121/209] lib/genalloc.c: fix allocation of aligned buffer from non-aligned chunk Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 122/209] lib/genalloc.c: use vzalloc_node() to allocate the bitmap Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 123/209] fork: fix some -Wmissing-prototypes warnings Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 124/209] drivers/base/platform.c: kmemleak ignore a known leak Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 125/209] lib/genalloc.c: include vmalloc.h Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 126/209] mtd: Check add_mtd_device() ret code Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 127/209] tipc: fix memory leak in tipc_nl_compat_publ_dump Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 128/209] net/core/neighbour: tell kmemleak about hash tables Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 129/209] PCI/MSI: Return -ENOSPC from pci_alloc_irq_vectors_affinity() Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 130/209] net/core/neighbour: fix kmemleak minimal reference count for hash tables Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 131/209] serial: 8250: Fix serial8250 initialization crash Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 132/209] gpu: ipu-v3: pre: dont trigger update if buffer address doesnt change Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 133/209] sfc: suppress duplicate nvmem partition types in efx_ef10_mtd_probe Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 134/209] ip_tunnel: Make none-tunnel-dst tunnel port work with lwtunnel Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 135/209] decnet: fix DN_IFREQ_SIZE Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 136/209] net/smc: prevent races between smc_lgr_terminate() and smc_conn_free() Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 137/209] blktrace: Show requests without sector Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 138/209] tipc: fix skb may be leaky in tipc_link_input Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 139/209] sfc: initialise found bitmap in efx_ef10_mtd_probe Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 140/209] net: fix possible overflow in __sk_mem_raise_allocated() Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 141/209] sctp: dont compare hb_timer expire date before starting it Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 142/209] bpf: decrease usercnt if bpf_map_new_fd() fails in bpf_map_get_fd_by_id() Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 143/209] net: dev: Use unsigned integer as an argument to left-shift Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 144/209] kvm: properly check debugfs dentry before using it Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 145/209] bpf: drop refcount if bpf_map_new_fd() fails in map_create() Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 146/209] net: hns3: Change fw error code NOT_EXEC to NOT_SUPPORTED Greg Kroah-Hartman
2019-12-04 17:55 ` [PATCH 4.14 147/209] iommu/amd: Fix NULL dereference bug in match_hid_uid Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 148/209] apparmor: delete the dentry in aafs_remove() to avoid a leak Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 149/209] scsi: libsas: Support SATA PHY connection rate unmatch fixing during discovery Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 150/209] ACPI / APEI: Dont wait to serialise with oops messages when panic()ing Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 151/209] ACPI / APEI: Switch estatus pool to use vmalloc memory Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 152/209] scsi: libsas: Check SMP PHY control function result Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 153/209] powerpc/pseries/dlpar: Fix a missing check in dlpar_parse_cc_property() Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 154/209] mtd: Remove a debug trace in mtdpart.c Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 155/209] mm, gup: add missing refcount overflow checks on s390 Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 156/209] clk: at91: fix update bit maps on CFG_MOR write Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 157/209] clk: at91: generated: set audio_pll_allowed in at91_clk_register_generated() Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 158/209] staging: rtl8192e: fix potential use after free Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 159/209] staging: rtl8723bs: Drop ACPI device ids Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 160/209] staging: rtl8723bs: Add 024c:0525 to the list of SDIO device-ids Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 161/209] USB: serial: ftdi_sio: add device IDs for U-Blox C099-F9P Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 162/209] mei: bus: prefix device names on bus with the bus name Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 163/209] xfrm: Fix memleak on xfrm state destroy Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 164/209] media: v4l2-ctrl: fix flags for DO_WHITE_BALANCE Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 165/209] net: macb: fix error format in dev_err() Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 166/209] pwm: Clear chip_data in pwm_put() Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 167/209] media: atmel: atmel-isc: fix asd memory allocation Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 168/209] media: atmel: atmel-isc: fix INIT_WORK misplacement Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 169/209] macvlan: schedule bc_work even if error Greg Kroah-Hartman
2019-12-04 17:56 ` Greg Kroah-Hartman [this message]
2019-12-04 17:56 ` [PATCH 4.14 171/209] openvswitch: fix flow command message size Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 172/209] slip: Fix use-after-free Read in slip_open Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 173/209] openvswitch: drop unneeded BUG_ON() in ovs_flow_cmd_build_info() Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 174/209] openvswitch: remove another BUG_ON() Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 175/209] tipc: fix link name length check Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 176/209] sctp: cache netns in sctp_ep_common Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 177/209] net: sched: fix `tc -s class show` no bstats on class with nolock subqueues Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 178/209] ext4: add more paranoia checking in ext4_expand_extra_isize handling Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 179/209] watchdog: sama5d4: fix WDD value to be always set to max Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 180/209] net: macb: Fix SUBNS increment and increase resolution Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 181/209] net: macb driver, check for SKBTX_HW_TSTAMP Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 182/209] mtd: rawnand: atmel: Fix spelling mistake in error message Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 183/209] mtd: rawnand: atmel: fix possible object reference leak Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 184/209] mtd: spi-nor: cast to u64 to avoid uint overflows Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 185/209] y2038: futex: Move compat implementation into futex.c Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 186/209] futex: Prevent robust futex exit race Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 187/209] futex: Move futex exit handling into futex code Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 188/209] futex: Replace PF_EXITPIDONE with a state Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 189/209] exit/exec: Seperate mm_release() Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 190/209] futex: Split futex_mm_release() for exit/exec Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 191/209] futex: Set task::futex_state to DEAD right after handling futex exit Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 192/209] futex: Mark the begin of futex exit explicitly Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 193/209] futex: Sanitize exit state handling Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 194/209] futex: Provide state handling for exec() as well Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 195/209] futex: Add mutex around futex exit Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 196/209] futex: Provide distinct return value when owner is exiting Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 197/209] futex: Prevent exit livelock Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 198/209] HID: core: check whether Usage Page item is after Usage ID items Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 199/209] crypto: stm32/hash - Fix hmac issue more than 256 bytes Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 200/209] media: stm32-dcmi: fix DMA corruption when stopping streaming Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 201/209] hwrng: stm32 - fix unbalanced pm_runtime_enable Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 202/209] mailbox: mailbox-test: fix null pointer if no mmio Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 203/209] pinctrl: stm32: fix memory leak issue Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 204/209] ASoC: stm32: i2s: fix dma configuration Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 205/209] ASoC: stm32: i2s: fix 16 bit format support Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 206/209] ASoC: stm32: i2s: fix IRQ clearing Greg Kroah-Hartman
2019-12-04 17:56 ` [PATCH 4.14 207/209] platform/x86: hp-wmi: Fix ACPI errors caused by too small buffer Greg Kroah-Hartman
2019-12-04 17:57 ` [PATCH 4.14 208/209] platform/x86: hp-wmi: Fix ACPI errors caused by passing 0 as input size Greg Kroah-Hartman
2019-12-04 17:57 ` [PATCH 4.14 209/209] net: fec: fix clock count mis-match Greg Kroah-Hartman
2019-12-05 5:17 ` [PATCH 4.14 000/209] 4.14.158-stable review Naresh Kamboju
2019-12-05 8:48 ` Greg Kroah-Hartman
2019-12-05 6:59 ` Jon Hunter
2019-12-05 8:48 ` Greg Kroah-Hartman
2019-12-05 14:14 ` Guenter Roeck
2019-12-05 14:16 ` Greg Kroah-Hartman
2019-12-06 15:24 ` shuah
2019-12-06 15:28 ` Greg Kroah-Hartman
2019-12-06 15:35 ` shuah
2019-12-06 16:10 ` Guenter Roeck
2019-12-06 16:23 ` shuah
2019-12-06 16:56 ` Guenter Roeck
2019-12-10 0:52 ` shuah
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=20191204175335.182835822@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=davem@davemloft.net \
--cc=jhs@mojatatu.com \
--cc=jiri@mellanox.com \
--cc=linux-kernel@vger.kernel.org \
--cc=nikolay@cumulusnetworks.com \
--cc=roopa@cumulusnetworks.com \
--cc=simon.horman@netronome.com \
--cc=stable@vger.kernel.org \
--cc=yotamg@mellanox.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).