From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, YangYuxi <yx.atom1@gmail.com>,
Julian Anastasov <ja@ssi.bg>, Simon Horman <horms@verge.net.au>,
Pablo Neira Ayuso <pablo@netfilter.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 072/168] ipvs: allow connection reuse for unconfirmed conntrack
Date: Mon, 17 Aug 2020 17:16:43 +0200 [thread overview]
Message-ID: <20200817143737.310228173@linuxfoundation.org> (raw)
In-Reply-To: <20200817143733.692105228@linuxfoundation.org>
From: Julian Anastasov <ja@ssi.bg>
[ Upstream commit f0a5e4d7a594e0fe237d3dfafb069bb82f80f42f ]
YangYuxi is reporting that connection reuse
is causing one-second delay when SYN hits
existing connection in TIME_WAIT state.
Such delay was added to give time to expire
both the IPVS connection and the corresponding
conntrack. This was considered a rare case
at that time but it is causing problem for
some environments such as Kubernetes.
As nf_conntrack_tcp_packet() can decide to
release the conntrack in TIME_WAIT state and
to replace it with a fresh NEW conntrack, we
can use this to allow rescheduling just by
tuning our check: if the conntrack is
confirmed we can not schedule it to different
real server and the one-second delay still
applies but if new conntrack was created,
we are free to select new real server without
any delays.
YangYuxi lists some of the problem reports:
- One second connection delay in masquerading mode:
https://marc.info/?t=151683118100004&r=1&w=2
- IPVS low throughput #70747
https://github.com/kubernetes/kubernetes/issues/70747
- Apache Bench can fill up ipvs service proxy in seconds #544
https://github.com/cloudnativelabs/kube-router/issues/544
- Additional 1s latency in `host -> service IP -> pod`
https://github.com/kubernetes/kubernetes/issues/90854
Fixes: f719e3754ee2 ("ipvs: drop first packet to redirect conntrack")
Co-developed-by: YangYuxi <yx.atom1@gmail.com>
Signed-off-by: YangYuxi <yx.atom1@gmail.com>
Signed-off-by: Julian Anastasov <ja@ssi.bg>
Reviewed-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
include/net/ip_vs.h | 10 ++++------
net/netfilter/ipvs/ip_vs_core.c | 12 +++++++-----
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h
index af0ede9ad4d0b..c31e54a41b5c4 100644
--- a/include/net/ip_vs.h
+++ b/include/net/ip_vs.h
@@ -1614,18 +1614,16 @@ static inline void ip_vs_conn_drop_conntrack(struct ip_vs_conn *cp)
}
#endif /* CONFIG_IP_VS_NFCT */
-/* Really using conntrack? */
-static inline bool ip_vs_conn_uses_conntrack(struct ip_vs_conn *cp,
- struct sk_buff *skb)
+/* Using old conntrack that can not be redirected to another real server? */
+static inline bool ip_vs_conn_uses_old_conntrack(struct ip_vs_conn *cp,
+ struct sk_buff *skb)
{
#ifdef CONFIG_IP_VS_NFCT
enum ip_conntrack_info ctinfo;
struct nf_conn *ct;
- if (!(cp->flags & IP_VS_CONN_F_NFCT))
- return false;
ct = nf_ct_get(skb, &ctinfo);
- if (ct)
+ if (ct && nf_ct_is_confirmed(ct))
return true;
#endif
return false;
diff --git a/net/netfilter/ipvs/ip_vs_core.c b/net/netfilter/ipvs/ip_vs_core.c
index a71f777d1353a..d5e4329579e28 100644
--- a/net/netfilter/ipvs/ip_vs_core.c
+++ b/net/netfilter/ipvs/ip_vs_core.c
@@ -1928,14 +1928,14 @@ ip_vs_in(struct netns_ipvs *ipvs, unsigned int hooknum, struct sk_buff *skb, int
conn_reuse_mode = sysctl_conn_reuse_mode(ipvs);
if (conn_reuse_mode && !iph.fragoffs && is_new_conn(skb, &iph) && cp) {
- bool uses_ct = false, resched = false;
+ bool old_ct = false, resched = false;
if (unlikely(sysctl_expire_nodest_conn(ipvs)) && cp->dest &&
unlikely(!atomic_read(&cp->dest->weight))) {
resched = true;
- uses_ct = ip_vs_conn_uses_conntrack(cp, skb);
+ old_ct = ip_vs_conn_uses_old_conntrack(cp, skb);
} else if (is_new_conn_expected(cp, conn_reuse_mode)) {
- uses_ct = ip_vs_conn_uses_conntrack(cp, skb);
+ old_ct = ip_vs_conn_uses_old_conntrack(cp, skb);
if (!atomic_read(&cp->n_control)) {
resched = true;
} else {
@@ -1943,15 +1943,17 @@ ip_vs_in(struct netns_ipvs *ipvs, unsigned int hooknum, struct sk_buff *skb, int
* that uses conntrack while it is still
* referenced by controlled connection(s).
*/
- resched = !uses_ct;
+ resched = !old_ct;
}
}
if (resched) {
+ if (!old_ct)
+ cp->flags &= ~IP_VS_CONN_F_NFCT;
if (!atomic_read(&cp->n_control))
ip_vs_conn_expire_now(cp);
__ip_vs_conn_put(cp);
- if (uses_ct)
+ if (old_ct)
return NF_DROP;
cp = NULL;
}
--
2.25.1
next prev parent reply other threads:[~2020-08-17 17:18 UTC|newest]
Thread overview: 183+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-17 15:15 [PATCH 4.19 000/168] 4.19.140-rc1 review Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 001/168] tracepoint: Mark __tracepoint_strings __used Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 002/168] HID: input: Fix devices that return multiple bytes in battery report Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 003/168] cgroup: add missing skcd->no_refcnt check in cgroup_sk_clone() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 004/168] x86/mce/inject: Fix a wrong assignment of i_mce.status Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 005/168] sched/fair: Fix NOHZ next idle balance Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 006/168] sched: correct SD_flags returned by tl->sd_flags() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 007/168] arm64: dts: rockchip: fix rk3368-lion gmac reset gpio Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 008/168] arm64: dts: rockchip: fix rk3399-puma vcc5v0-host gpio Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 009/168] arm64: dts: rockchip: fix rk3399-puma gmac reset gpio Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 010/168] EDAC: Fix reference count leaks Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 011/168] arm64: dts: qcom: msm8916: Replace invalid bias-pull-none property Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 012/168] crypto: ccree - fix resource leak on error path Greg Kroah-Hartman
2020-08-18 9:22 ` Pavel Machek
2020-08-21 8:05 ` Herbert Xu
2020-08-17 15:15 ` [PATCH 4.19 013/168] firmware: arm_scmi: Fix SCMI genpd domain probing Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 014/168] arm64: dts: exynos: Fix silent hang after boot on Espresso Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 015/168] clk: scmi: Fix min and max rate when registering clocks with discrete rates Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 016/168] m68k: mac: Dont send IOP message until channel is idle Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 017/168] m68k: mac: Fix IOP status/control register writes Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 018/168] platform/x86: intel-hid: Fix return value check in check_acpi_dev() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 019/168] platform/x86: intel-vbtn: " Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 020/168] ARM: dts: gose: Fix ports node name for adv7180 Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 021/168] ARM: dts: gose: Fix ports node name for adv7612 Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 022/168] ARM: at91: pm: add missing put_device() call in at91_pm_sram_init() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 023/168] spi: lantiq: fix: Rx overflow error in full duplex mode Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 024/168] ARM: socfpga: PM: add missing put_device() call in socfpga_setup_ocram_self_refresh() Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 025/168] drm/tilcdc: fix leak & null ref in panel_connector_get_modes Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 026/168] soc: qcom: rpmh-rsc: Set suppress_bind_attrs flag Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 027/168] Bluetooth: add a mutex lock to avoid UAF in do_enale_set Greg Kroah-Hartman
2020-08-18 9:40 ` Pavel Machek
2020-08-18 9:53 ` Greg Kroah-Hartman
2020-08-17 15:15 ` [PATCH 4.19 028/168] loop: be paranoid on exit and prevent new additions / removals Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 029/168] fs/btrfs: Add cond_resched() for try_release_extent_mapping() stalls Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 030/168] drm/amdgpu: avoid dereferencing a NULL pointer Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 031/168] drm/radeon: Fix reference count leaks caused by pm_runtime_get_sync Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 032/168] crypto: aesni - Fix build with LLVM_IAS=1 Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 033/168] video: fbdev: neofb: fix memory leak in neo_scan_monitor() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 034/168] md-cluster: fix wild pointer of unlock_all_bitmaps() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 035/168] arm64: dts: hisilicon: hikey: fixes to comply with adi, adv7533 DT binding Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 036/168] drm/etnaviv: fix ref count leak via pm_runtime_get_sync Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 037/168] drm/nouveau: fix multiple instances of reference count leaks Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 038/168] usb: mtu3: clear dual mode of u3port when disable device Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 039/168] drm/debugfs: fix plain echo to connector "force" attribute Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 040/168] drm/radeon: disable AGP by default Greg Kroah-Hartman
2020-08-18 9:41 ` Pavel Machek
2020-08-18 10:48 ` Christian König
2020-08-17 15:16 ` [PATCH 4.19 041/168] irqchip/irq-mtk-sysirq: Replace spinlock with raw_spinlock Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 042/168] mm/mmap.c: Add cond_resched() for exit_mmap() CPU stalls Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 043/168] brcmfmac: keep SDIO watchdog running when console_interval is non-zero Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 044/168] brcmfmac: To fix Bss Info flag definition Bug Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 045/168] brcmfmac: set state of hanger slot to FREE when flushing PSQ Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 046/168] iwlegacy: Check the return value of pcie_capability_read_*() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 047/168] gpu: host1x: debug: Fix multiple channels emitting messages simultaneously Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 048/168] usb: gadget: net2280: fix memory leak on probe error handling paths Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 049/168] bdc: Fix bug causing crash after multiple disconnects Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 050/168] usb: bdc: Halt controller on suspend Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 051/168] dyndbg: fix a BUG_ON in ddebug_describe_flags Greg Kroah-Hartman
2020-08-18 9:51 ` Pavel Machek
2020-08-18 10:51 ` David Laight
2020-08-17 15:16 ` [PATCH 4.19 052/168] bcache: fix super block seq numbers comparision in register_cache_set() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 053/168] ACPICA: Do not increment operation_region reference counts for field units Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 054/168] drm/msm: ratelimit crtc event overflow error Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 055/168] agp/intel: Fix a memory leak on module initialisation failure Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 056/168] video: fbdev: sm712fb: fix an issue about iounmap for a wrong address Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 057/168] console: newport_con: fix an issue about leak related system resources Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 058/168] video: pxafb: Fix the function used to balance a dma_alloc_coherent() call Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 059/168] ath10k: Acquire tx_lock in tx error paths Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 060/168] iio: improve IIO_CONCENTRATION channel type description Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 061/168] drm/etnaviv: Fix error path on failure to enable bus clk Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 062/168] drm/arm: fix unintentional integer overflow on left shift Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 063/168] leds: lm355x: avoid enum conversion warning Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 064/168] media: omap3isp: Add missed v4l2_ctrl_handler_free() for preview_init_entities() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 065/168] ASoC: Intel: bxt_rt298: add missing .owner field Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 066/168] scsi: cumana_2: Fix different dev_id between request_irq() and free_irq() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 067/168] drm/mipi: use dcs write for mipi_dsi_dcs_set_tear_scanline Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 068/168] cxl: Fix kobject memleak Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 069/168] drm/radeon: fix array out-of-bounds read and write issues Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 070/168] scsi: powertec: Fix different dev_id between request_irq() and free_irq() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 071/168] scsi: eesox: " Greg Kroah-Hartman
2020-08-17 15:16 ` Greg Kroah-Hartman [this message]
2020-08-17 15:16 ` [PATCH 4.19 073/168] media: firewire: Using uninitialized values in node_probe() Greg Kroah-Hartman
2020-08-18 21:34 ` Pavel Machek
2020-08-19 5:45 ` Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 074/168] media: exynos4-is: Add missed check for pinctrl_lookup_state() Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 075/168] xfs: dont eat an EIO/ENOSPC writeback error when scrubbing data fork Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 076/168] xfs: fix reflink quota reservation accounting error Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 077/168] RDMA/rxe: Skip dgid check in loopback mode Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 078/168] PCI: Fix pci_cfg_wait queue locking problem Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 079/168] leds: core: Flush scheduled work for system suspend Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 080/168] drm: panel: simple: Fix bpc for LG LB070WV8 panel Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 081/168] phy: exynos5-usbdrd: Calibrating makes sense only for USB2.0 PHY Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 082/168] drm/bridge: sil_sii8620: initialize return of sii8620_readb Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 083/168] scsi: scsi_debug: Add check for sdebug_max_queue during module init Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 084/168] mwifiex: Prevent memory corruption handling keys Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 085/168] powerpc/vdso: Fix vdso cpu truncation Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 086/168] RDMA/qedr: SRQs bug fixes Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 087/168] RDMA/rxe: Prevent access to wr->next ptr afrer wr is posted to send queue Greg Kroah-Hartman
2020-08-17 15:16 ` [PATCH 4.19 088/168] staging: rtl8192u: fix a dubious looking mask before a shift Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 089/168] PCI/ASPM: Add missing newline in sysfs policy Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 090/168] powerpc/book3s64/pkeys: Use PVR check instead of cpu feature Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 091/168] drm/imx: tve: fix regulator_disable error path Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 092/168] USB: serial: iuu_phoenix: fix led-activity helpers Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 093/168] usb: core: fix quirks_param_set() writing to a const pointer Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 094/168] thermal: ti-soc-thermal: Fix reversed condition in ti_thermal_expose_sensor() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 095/168] coresight: tmc: Fix TMC mode read in tmc_read_unprepare_etb() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 096/168] MIPS: OCTEON: add missing put_device() call in dwc3_octeon_device_init() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 097/168] usb: dwc2: Fix error path in gadget registration Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 098/168] scsi: mesh: Fix panic after host or bus reset Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 099/168] net: dsa: mv88e6xxx: MV88E6097 does not support jumbo configuration Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 100/168] PCI: cadence: Fix updating Vendor ID and Subsystem Vendor ID register Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 101/168] RDMA/core: Fix return error value in _ib_modify_qp() to negative Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 102/168] Smack: fix another vsscanf out of bounds Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 103/168] Smack: prevent underflow in smk_set_cipso() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 104/168] power: supply: check if calc_soc succeeded in pm860x_init_battery Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 105/168] Bluetooth: hci_h5: Set HCI_UART_RESET_ON_INIT to correct flags Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 106/168] Bluetooth: hci_serdev: Only unregister device if it was registered Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 107/168] net: dsa: rtl8366: Fix VLAN semantics Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 108/168] net: dsa: rtl8366: Fix VLAN set-up Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 109/168] powerpc/boot: Fix CONFIG_PPC_MPC52XX references Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 110/168] selftests/powerpc: Fix CPU affinity for child process Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 111/168] PCI: Release IVRS table in AMD ACS quirk Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 112/168] selftests/powerpc: Fix online CPU selection Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 113/168] ASoC: meson: axg-tdm-interface: fix link fmt setup Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 114/168] s390/qeth: dont process empty bridge port events Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 115/168] wl1251: fix always return 0 error Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 116/168] tools, build: Propagate build failures from tools/build/Makefile.build Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 117/168] net: ethernet: aquantia: Fix wrong return value Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 118/168] liquidio: Fix wrong return value in cn23xx_get_pf_num() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 119/168] net: spider_net: Fix the size used in a dma_free_coherent() call Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 120/168] fsl/fman: use 32-bit unsigned integer Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 121/168] fsl/fman: fix dereference null return value Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 122/168] fsl/fman: fix unreachable code Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 123/168] fsl/fman: check dereferencing null pointer Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 124/168] fsl/fman: fix eth hash table allocation Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 125/168] dlm: Fix kobject memleak Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 126/168] ocfs2: fix unbalanced locking Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 127/168] pinctrl-single: fix pcs_parse_pinconf() return value Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 128/168] svcrdma: Fix page leak in svc_rdma_recv_read_chunk() Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 129/168] x86/fsgsbase/64: Fix NULL deref in 86_fsgsbase_read_task Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 130/168] crypto: aesni - add compatibility with IAS Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 131/168] af_packet: TPACKET_V3: fix fill status rwlock imbalance Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 132/168] drivers/net/wan/lapbether: Added needed_headroom and a skb->len check Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 133/168] net/nfc/rawsock.c: add CAP_NET_RAW check Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 134/168] net: Set fput_needed iff FDPUT_FPUT is set Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 135/168] net/tls: Fix kmap usage Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 136/168] net: refactor bind_bucket fastreuse into helper Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 137/168] net: initialize fastreuse on inet_inherit_port Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 138/168] USB: serial: cp210x: re-enable auto-RTS on open Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 139/168] USB: serial: cp210x: enable usb generic throttle/unthrottle Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 140/168] ALSA: hda - fix the micmute led status for Lenovo ThinkCentre AIO Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 141/168] ALSA: usb-audio: Creative USB X-Fi Pro SB1095 volume knob support Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 142/168] ALSA: usb-audio: fix overeager device match for MacroSilicon MS2109 Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 143/168] ALSA: usb-audio: work around streaming quirk " Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 144/168] pstore: Fix linking when crypto API disabled Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 145/168] crypto: hisilicon - dont sleep of CRYPTO_TFM_REQ_MAY_SLEEP was not specified Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 146/168] crypto: qat - fix double free in qat_uclo_create_batch_init_list Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 147/168] crypto: ccp - Fix use of merged scatterlists Greg Kroah-Hartman
2020-08-17 15:17 ` [PATCH 4.19 148/168] crypto: cpt - dont sleep of CRYPTO_TFM_REQ_MAY_SLEEP was not specified Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 149/168] bitfield.h: dont compile-time validate _val in FIELD_FIT Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 150/168] fs/minix: check return value of sb_getblk() Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 151/168] fs/minix: dont allow getting deleted inodes Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 152/168] fs/minix: reject too-large maximum file size Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 153/168] ALSA: usb-audio: add quirk for Pioneer DDJ-RB Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 154/168] 9p: Fix memory leak in v9fs_mount Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 155/168] drm/ttm/nouveau: dont call tt destroy callback on alloc failure Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 156/168] NFS: Dont move layouts to plh_return_segs list while in use Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 157/168] NFS: Dont return layout segments that are " Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 158/168] cpufreq: dt: fix oops on armada37xx Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 159/168] include/asm-generic/vmlinux.lds.h: align ro_after_init Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 160/168] spi: spidev: Align buffers for DMA Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 161/168] mtd: rawnand: qcom: avoid write to unavailable register Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 162/168] parisc: Implement __smp_store_release and __smp_load_acquire barriers Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 163/168] parisc: mask out enable and reserved bits from sba imask Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 164/168] ARM: 8992/1: Fix unwind_frame for clang-built kernels Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 165/168] irqdomain/treewide: Free firmware node after domain removal Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 166/168] xen/balloon: fix accounting in alloc_xenballooned_pages error path Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 167/168] xen/balloon: make the balloon wait interruptible Greg Kroah-Hartman
2020-08-17 15:18 ` [PATCH 4.19 168/168] xen/gntdev: Fix dmabuf import with non-zero sgt offset Greg Kroah-Hartman
2020-08-18 6:11 ` [PATCH 4.19 000/168] 4.19.140-rc1 review Naresh Kamboju
2020-08-18 18:56 ` Guenter Roeck
2020-08-18 20:25 ` Pavel Machek
2020-08-18 22:37 ` Shuah Khan
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=20200817143737.310228173@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=horms@verge.net.au \
--cc=ja@ssi.bg \
--cc=linux-kernel@vger.kernel.org \
--cc=pablo@netfilter.org \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=yx.atom1@gmail.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