All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andres Freund <andres@anarazel.de>
To: Jens Axboe <axboe@kernel.dk>, Stefan Metzmacher <metze@samba.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-kernel@vger.kernel.org, stable@vger.kernel.org,
	io-uring <io-uring@vger.kernel.org>
Subject: Re: [PATCH 5.4 033/222] io_uring: only allow submit from owning task
Date: Sat, 25 Jan 2020 21:54:57 -0800	[thread overview]
Message-ID: <20200126055457.5w4f5jyhkic7cixu@alap3.anarazel.de> (raw)
In-Reply-To: <1b4a79c1-6cda-12a8-219b-0c1c146faeff@samba.org>

Hi,

On 2020-01-24 11:38:02 +0100, Stefan Metzmacher wrote:
> Am 22.01.20 um 10:26 schrieb Greg Kroah-Hartman:
> > From: Jens Axboe <axboe@kernel.dk>
> >
> > commit 44d282796f81eb1debc1d7cb53245b4cb3214cb5 upstream.
> >
> > If the credentials or the mm doesn't match, don't allow the task to
> > submit anything on behalf of this ring. The task that owns the ring can
> > pass the file descriptor to another task, but we don't want to allow
> > that task to submit an SQE that then assumes the ring mm and creds if
> > it needs to go async.
> >
> > Cc: stable@vger.kernel.org
> > Suggested-by: Stefan Metzmacher <metze@samba.org>
> > Signed-off-by: Jens Axboe <axboe@kernel.dk>
> > Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >
> >
> > ---
> >  fs/io_uring.c |    6 ++++++
> >  1 file changed, 6 insertions(+)
> >
> > --- a/fs/io_uring.c
> > +++ b/fs/io_uring.c
> > @@ -3716,6 +3716,12 @@ SYSCALL_DEFINE6(io_uring_enter, unsigned
> >  			wake_up(&ctx->sqo_wait);
> >  		submitted = to_submit;
> >  	} else if (to_submit) {
> > +		if (current->mm != ctx->sqo_mm ||
> > +		    current_cred() != ctx->creds) {
> > +			ret = -EPERM;
> > +			goto out;
> > +		}
> > +
>
> I thought about this a bit more.
>
> I'm not sure if this is actually to restrictive,
> because it means applications like Samba won't
> be able to use io-uring at all.

Yea, I think it is too restrictive. In fact, it broke my WIP branch to
make postgres use io_uring.


Postgres uses a forked process model, with all sub-processes forked off
one parent process ("postmaster"), sharing MAP_ANONYMOUS|MAP_SHARED
memory (buffer pool, locks, and lots of other IPC). My WIP branch so far
has postmaster create a number of io_urings that then the different
processes can use (with locking if necessary).

In plenty of the cases it's fairly important for performance to not
require an additional context switch initiate IO, therefore we cannot
delegate submitting to an io_uring to separate process. But it's not
feasible to have one (or even two) urings for each process either: For
one, that's just about guaranteed to bring us over the default
RLIMIT_MEMLOCK limit, and requiring root only config changes is not an
option for many (nor user friendly).


Not sharing queues makes it basically impossible to rely on io_uring
ordering properties when operation interlock is needed. E.g. to
guarantee that the journal is flushed before some data buffer can be
written back, being able to make use of links and drains is great - but
there's one journal for all processes. To be able to guarantee anything,
all the interlocked writes need to go through one io_uring. I've not yet
implemented this, so I don't have numbers, but I expect pretty
significant savings.


Not being able to share urings also makes it harder to resolve
deadlocks:

As we call into both library and user defined code, we cannot guarantee
that a specific backend process will promptly (or at all, when waiting
for some locks) process cqes. There's also sections where we don't want
to constantly check for ready events, for performance reasons.  But
operations initiated by a process might be blocking other connections:

E.g. process #1 might have initiated transferring a number of blocks
into postgres' buffer pool via io_uring , and now is busy processing the
first block that completed. But now process #2 might need one of the
buffers that had IO queued, but didn't complete in time for #1 to see
the results.  The way I have it set up right now, #2 simply can process
pending cqes in the relevant queue. Which, in this example, would mark
the pg buffer pool entry as valid, allowing #2 to continue.

Now, completions can still be read by all processes, so I could continue
to do the above: But that'd require all potentially needed io_urings to
be set up in postmaster, before the first fork, and all processes to
keep all those FDs open (commonly several hundred). Not an attractive
option either, imo.

Obviously we could solve this by having a sqe result processing thread
running within each process - but that'd be a very significant new
overhead. And it'd require making some non-threadsafe code threadsafe,
which I do not relish tackling as a side-effect of io_uring adoption.


It also turns out to be nice from a performance / context-switch rate
angle to be able to process cqes for submissions by other
processes. Saves an expensive context switch, and often enough it really
doesn't matter which process processes the completion (especially for
readahead). And in other cases it's cheap to just schedule the
subsequent work from the cqe processor, e.g. initiating readahead of a
few more blocks into the pg buffer pool.  Similarly, there are a few
cases where it's useful for several processes to submit IO into a uring
primarily drained by one specific process, to offload the subsequent
action, if that's expensive


Now, I think there's a valid argument to be made that postgres should
just use threads, and not be hampered by any of this. But a) that's not
going to happen all that soon, it's a large change, b) it's far from
free from problems either, especially scalability on larger machines,
and robustness.


> As even if current_cred() and ctx->creds describe the same
> set of uid,gids the != won't ever match again and
> makes the whole ring unuseable.

Indeed.  It also seems weird that a sqpoll now basically has different
semantics, allowing the io_uring to be used by multiple processes - a
task with a different mm can still wake the sqpoll thread up, even.

Since the different processes attached still can still write to the
io_uring mmaped memory, they can still queue sqes, they just can't
initiate the processing. But the next time the creator of the uring
submits, they will still be - and thus it seems that the kernel needs to
handle this safely. So I really don't get what this actually achieves?
Am I missing something here?

Greetings,

Andres Freund

  parent reply	other threads:[~2020-01-26  5:55 UTC|newest]

Thread overview: 241+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-22  9:26 [PATCH 5.4 000/222] 5.4.14-stable review Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 001/222] ARM: dts: meson8: fix the size of the PMU registers Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 002/222] clk: qcom: gcc-sdm845: Add missing flag to votable GDSCs Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 003/222] soc: amlogic: meson-ee-pwrc: propagate PD provider registration errors Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 004/222] soc: amlogic: meson-ee-pwrc: propagate errors from pm_genpd_init() Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 005/222] dt-bindings: reset: meson8b: fix duplicate reset IDs Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 006/222] ARM: dts: imx6q-dhcom: fix rtc compatible Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 007/222] arm64: dts: ls1028a: fix endian setting for dcfg Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 008/222] arm64: dts: imx8mm: Change SDMA1 ahb clock for imx8mm Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 009/222] bus: ti-sysc: Fix iterating over clocks Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 010/222] clk: Dont try to enable critical clocks if prepare failed Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 011/222] Revert "gpio: thunderx: Switch to GPIOLIB_IRQCHIP" Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 012/222] arm64: dts: imx8mq-librem5-devkit: use correct interrupt for the magnetometer Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 013/222] ASoC: msm8916-wcd-digital: Reset RX interpolation path after use Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 014/222] ASoC: stm32: sai: fix possible circular locking Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 015/222] ASoC: stm32: dfsdm: fix 16 bits record Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 016/222] ASoC: msm8916-wcd-analog: Fix selected events for MIC BIAS External1 Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 017/222] ASoC: msm8916-wcd-analog: Fix MIC BIAS Internal1 Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 018/222] ARM: OMAP2+: Fix ti_sysc_find_one_clockdomain to check for to_clk_hw_omap Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 019/222] ARM: dts: imx7ulp: fix reg of cpu node Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 020/222] ARM: dts: imx6q-dhcom: Fix SGTL5000 VDDIO regulator connection Greg Kroah-Hartman
2020-01-22  9:26   ` Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 021/222] ASoC: Intel: bytcht_es8316: Fix Irbis NB41 netbook quirk Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 022/222] ALSA: dice: fix fallback from protocol extension into limited functionality Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 023/222] ALSA: seq: Fix racy access for queue timer in proc read Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 024/222] ALSA: firewire-tascam: fix corruption due to spin lock without restoration in SoftIRQ context Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 025/222] ALSA: usb-audio: fix sync-ep altsetting sanity check Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 026/222] arm64: dts: allwinner: a64: olinuxino: Fix SDIO supply regulator Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 027/222] arm64: dts: allwinner: a64: olinuxino: Fix eMMC " Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 028/222] arm64: dts: agilex/stratix10: fix pmu interrupt numbers Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 029/222] Fix built-in early-load Intel microcode alignment Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 030/222] clk: sunxi-ng: r40: Allow setting parent rate for external clock outputs Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 031/222] block: fix an integer overflow in logical block size Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 032/222] fuse: fix fuse_send_readpages() in the syncronous read case Greg Kroah-Hartman
2020-01-22  9:26 ` [PATCH 5.4 033/222] io_uring: only allow submit from owning task Greg Kroah-Hartman
2020-01-24 10:38   ` Stefan Metzmacher
2020-01-24 10:41     ` Stefan Metzmacher
2020-01-24 16:58     ` Jens Axboe
2020-01-24 19:11       ` Stefan Metzmacher
2020-01-24 21:41         ` Jens Axboe
2020-01-26  5:54     ` Andres Freund [this message]
2020-01-26 16:57       ` Jens Axboe
2020-01-22  9:27 ` [PATCH 5.4 034/222] cpuidle: teo: Fix intervals[] array indexing bug Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 035/222] ARM: dts: am571x-idk: Fix gpios property to have the correct gpio number Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 036/222] ARM: davinci: select CONFIG_RESET_CONTROLLER Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 037/222] perf: Correctly handle failed perf_get_aux_event() Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 038/222] iio: adc: ad7124: Fix DT channel configuration Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 039/222] iio: imu: st_lsm6dsx: Fix selection of ST_LSM6DS3_ID Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 040/222] iio: light: vcnl4000: Fix scale for vcnl4040 Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 041/222] iio: chemical: pms7003: fix unmet triggered buffer dependency Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 042/222] iio: buffer: align the size of scan bytes to size of the largest element Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 043/222] USB: serial: simple: Add Motorola Solutions TETRA MTP3xxx and MTP85xx Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 044/222] USB: serial: option: Add support for Quectel RM500Q Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 045/222] USB: serial: opticon: fix control-message timeouts Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 046/222] USB: serial: option: add support for Quectel RM500Q in QDL mode Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 047/222] USB: serial: suppress driver bind attributes Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 048/222] USB: serial: ch341: handle unbound port at reset_resume Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 049/222] USB: serial: io_edgeport: handle unbound ports on URB completion Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 050/222] USB: serial: io_edgeport: add missing active-port sanity check Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 051/222] USB: serial: keyspan: handle unbound ports Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 052/222] USB: serial: quatech2: " Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 053/222] staging: comedi: ni_routes: fix null dereference in ni_find_route_source() Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 054/222] staging: comedi: ni_routes: allow partial routing information Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 055/222] scsi: fnic: fix invalid stack access Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 056/222] scsi: mptfusion: Fix double fetch bug in ioctl Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 057/222] ptrace: reintroduce usage of subjective credentials in ptrace_has_cap() Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 058/222] mtd: rawnand: gpmi: Fix suspend/resume problem Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 059/222] mtd: rawnand: gpmi: Restore nfc timing setup after suspend/resume Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 060/222] usb: core: hub: Improved device recognition on remote wakeup Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 061/222] cpu/SMT: Fix x86 link error without CONFIG_SYSFS Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 062/222] x86/resctrl: Fix an imbalance in domain_remove_cpu() Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 063/222] x86/CPU/AMD: Ensure clearing of SME/SEV features is maintained Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 064/222] locking/rwsem: Fix kernel crash when spinning on RWSEM_OWNER_UNKNOWN Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 065/222] perf/x86/intel/uncore: Fix missing marker for snr_uncore_imc_freerunning_events Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 066/222] x86/efistub: Disable paging at mixed mode entry Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 067/222] s390/zcrypt: Fix CCA cipher key gen with clear key value function Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 068/222] scsi: storvsc: Correctly set number of hardware queues for IDE disk Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 069/222] mtd: spi-nor: Fix selection of 4-byte addressing opcodes on Spansion Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 070/222] drm/i915: Add missing include file <linux/math64.h> Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 071/222] x86/resctrl: Fix potential memory leak Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 072/222] efi/earlycon: Fix write-combine mapping on x86 Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 073/222] s390/setup: Fix secure ipl message Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 074/222] clk: samsung: exynos5420: Keep top G3D clocks enabled Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 075/222] perf hists: Fix variable names inconsistency in hists__for_each() macro Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 076/222] locking/lockdep: Fix buffer overrun problem in stack_trace[] Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 077/222] perf report: Fix incorrectly added dimensions as switch perf data file Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 078/222] mm/shmem.c: thp, shmem: fix conflict of above-47bit hint address and PMD alignment Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 079/222] mm/huge_memory.c: thp: " Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 080/222] mm: memcg/slab: fix percpu slab vmstats flushing Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 081/222] mm: memcg/slab: call flush_memcg_workqueue() only if memcg workqueue is valid Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 082/222] mm, debug_pagealloc: dont rely on static keys too early Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 083/222] btrfs: rework arguments of btrfs_unlink_subvol Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 084/222] btrfs: fix invalid removal of root ref Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 085/222] btrfs: do not delete mismatched root refs Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 086/222] btrfs: relocation: fix reloc_root lifespan and access Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 087/222] btrfs: fix memory leak in qgroup accounting Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 088/222] btrfs: check rw_devices, not num_devices for balance Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 089/222] Btrfs: always copy scrub arguments back to user space Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 090/222] mm/memory_hotplug: dont free usage map when removing a re-added early section Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 091/222] mm/page-writeback.c: avoid potential division by zero in wb_min_max_ratio() Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 092/222] mm: khugepaged: add trace status description for SCAN_PAGE_HAS_PRIVATE Greg Kroah-Hartman
2020-01-22  9:27 ` [PATCH 5.4 093/222] ARM: dts: imx6qdl-sabresd: Remove incorrect power supply assignment Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 094/222] ARM: dts: imx6sx-sdb: " Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 095/222] ARM: dts: imx6sl-evk: " Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 096/222] ARM: dts: imx6sll-evk: " Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 097/222] ARM: dts: imx6q-icore-mipi: Use 1.5 version of i.Core MX6DL Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 098/222] ARM: dts: imx7: Fix Toradex Colibri iMX7S 256MB NAND flash support Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 099/222] net: stmmac: 16KB buffer must be 16 byte aligned Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 100/222] net: stmmac: Enable 16KB buffer size Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 101/222] reset: Fix {of,devm}_reset_control_array_get kerneldoc return types Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 102/222] tipc: fix potential hanging after b/rcast changing Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 103/222] tipc: fix retrans failure due to wrong destination Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 104/222] net: fix kernel-doc warning in <linux/netdevice.h> Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 105/222] block: Fix the type of sts in bsg_queue_rq() Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 106/222] drm/amd/display: Reorder detect_edp_sink_caps before link settings read Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 107/222] bpf: Fix incorrect verifier simulation of ARSH under ALU32 Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 108/222] bpf: Sockmap/tls, during free we may call tcp_bpf_unhash() in loop Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 109/222] bpf: Sockmap, ensure sock lock held during tear down Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 110/222] bpf: Sockmap/tls, push write_space updates through ulp updates Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 111/222] bpf: Sockmap, skmsg helper overestimates push, pull, and pop bounds Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 112/222] bpf: Sockmap/tls, msg_push_data may leave end mark in place Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 113/222] bpf: Sockmap/tls, tls_sw can create a plaintext buf > encrypt buf Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 114/222] bpf: Sockmap/tls, skmsg can have wrapped skmsg that needs extra chaining Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 115/222] bpf: Sockmap/tls, fix pop data with SK_DROP return code Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 116/222] i2c: tegra: Fix suspending in active runtime PM state Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 117/222] i2c: tegra: Properly disable runtime PM on drivers probe error Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 118/222] cfg80211: fix deadlocks in autodisconnect work Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 119/222] cfg80211: fix memory leak in nl80211_probe_mesh_link Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 120/222] cfg80211: fix memory leak in cfg80211_cqm_rssi_update Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 121/222] cfg80211: fix page refcount issue in A-MSDU decap Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 122/222] bpf/sockmap: Read psock ingress_msg before sk_receive_queue Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 123/222] i2c: iop3xx: Fix memory leak in probe error path Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 124/222] netfilter: fix a use-after-free in mtype_destroy() Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 125/222] netfilter: arp_tables: init netns pointer in xt_tgdtor_param struct Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 126/222] netfilter: nat: fix ICMP header corruption on ICMP errors Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 127/222] netfilter: nft_tunnel: fix null-attribute check Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 128/222] netfilter: nft_tunnel: ERSPAN_VERSION must not be null Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 129/222] netfilter: nf_tables: remove WARN and add NLA_STRING upper limits Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 130/222] netfilter: nf_tables: store transaction list locally while requesting module Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 131/222] netfilter: nf_tables: fix flowtable list del corruption Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 132/222] NFC: pn533: fix bulk-message timeout Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 133/222] net: bpf: Dont leak time wait and request sockets Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 134/222] bpftool: Fix printing incorrect pointer in btf_dump_ptr Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 135/222] batman-adv: Fix DAT candidate selection on little endian systems Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 136/222] macvlan: use skb_reset_mac_header() in macvlan_queue_xmit() Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 137/222] hv_netvsc: Fix memory leak when removing rndis device Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 138/222] net: avoid updating qdisc_xmit_lock_key in netdev_update_lockdep_key() Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 139/222] net: dsa: tag_qca: fix doubled Tx statistics Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 140/222] net: hns3: pad the short frame before sending to the hardware Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 141/222] net: hns: fix soft lockup when there is not enough memory Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 142/222] net: phy: dp83867: Set FORCE_LINK_GOOD to default after reset Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 143/222] net/sched: act_ife: initalize ife->metalist earlier Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 144/222] net: usb: lan78xx: limit size of local TSO packets Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 145/222] net/wan/fsl_ucc_hdlc: fix out of bounds write on array utdm_info Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 146/222] ptp: free ptp device pin descriptors properly Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 147/222] r8152: add missing endpoint sanity check Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 148/222] tcp: fix marked lost packets not being retransmitted Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 149/222] bnxt_en: Fix NTUPLE firmware command failures Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 150/222] bnxt_en: Fix ipv6 RFS filter matching logic Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 151/222] bnxt_en: Do not treat DSN (Digital Serial Number) read failure as fatal Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 152/222] net: ethernet: ave: Avoid lockdep warning Greg Kroah-Hartman
2020-01-22  9:28 ` [PATCH 5.4 153/222] net: systemport: Fixed queue mapping in internal ring map Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 154/222] net: dsa: sja1105: Dont error out on disabled ports with no phy-mode Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 155/222] net: dsa: tag_gswip: fix typo in tagger name Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 156/222] net: sched: act_ctinfo: fix memory leak Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 157/222] net: dsa: bcm_sf2: Configure IMP port for 2Gb/sec Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 158/222] i40e: prevent memory leak in i40e_setup_macvlans Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 159/222] drm/amdgpu: allow direct upload save restore list for raven2 Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 160/222] sh_eth: check sh_eth_cpu_data::dual_port when dumping registers Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 161/222] mlxsw: spectrum: Do not modify cloned SKBs during xmit Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 162/222] mlxsw: spectrum: Wipe xstats.backlog of down ports Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 163/222] mlxsw: spectrum_qdisc: Include MC TCs in Qdisc counters Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 164/222] net: stmmac: selftests: Make it work in Synopsys AXS101 boards Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 165/222] net: stmmac: selftests: Mark as fail when received VLAN ID != expected Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 166/222] selftests: mlxsw: qos_mc_aware: Fix mausezahn invocation Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 167/222] net: stmmac: selftests: Update status when disabling RSS Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 168/222] net: stmmac: tc: Do not setup flower filtering if RSS is enabled Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 169/222] devlink: Wait longer before warning about unset port type Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 170/222] xen/blkfront: Adjust indentation in xlvbd_alloc_gendisk Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 171/222] dt-bindings: Add missing properties keyword enclosing snps,tso Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 172/222] tcp: refine rule to allow EPOLLOUT generation under mem pressure Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 173/222] irqchip: Place CONFIG_SIFIVE_PLIC into the menu Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 174/222] arm64: dts: qcom: msm8998: Disable coresight by default Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 175/222] cw1200: Fix a signedness bug in cw1200_load_firmware() Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 176/222] arm64: dts: meson: axg: fix audio fifo reg size Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 177/222] arm64: dts: meson: g12: " Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 178/222] arm64: dts: meson-gxl-s905x-khadas-vim: fix gpio-keys-polled node Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 179/222] arm64: dts: renesas: r8a77970: Fix PWM3 Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 180/222] arm64: dts: marvell: Add AP806-dual missing CPU clocks Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 181/222] cfg80211: check for set_wiphy_params Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 182/222] tick/sched: Annotate lockless access to last_jiffies_update Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 183/222] arm64: dts: marvell: Fix CP110 NAND controller node multi-line comment alignment Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 184/222] arm64: dts: renesas: r8a774a1: Remove audio port node Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 185/222] arm64: dts: imx8mm-evk: Assigned clocks for audio plls Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 186/222] arm64: dts: qcom: sdm845-cheza: delete zap-shader Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 187/222] ARM: dts: imx6ul-kontron-n6310-s: Disable the snvs-poweroff driver Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 188/222] arm64: dts: allwinner: a64: Re-add PMU node Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 189/222] ARM: dts: dra7: fix cpsw mdio fck clock Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 190/222] arm64: dts: juno: Fix UART frequency Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 191/222] ARM: dts: Fix sgx sysconfig register for omap4 Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 192/222] Revert "arm64: dts: juno: add dma-ranges property" Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 193/222] mtd: devices: fix mchp23k256 read and write Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 194/222] mtd: cfi_cmdset_0002: only check errors when ready in cfi_check_err_status() Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 195/222] mtd: cfi_cmdset_0002: fix delayed error detection on HyperFlash Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 196/222] um: Dont trace irqflags during shutdown Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 197/222] um: virtio_uml: Disallow modular build Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 198/222] reiserfs: fix handling of -EOPNOTSUPP in reiserfs_for_each_xattr Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 199/222] scsi: esas2r: unlock on error in esas2r_nvram_read_direct() Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 200/222] scsi: hisi_sas: Dont create debugfs dump folder twice Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 201/222] scsi: hisi_sas: Set the BIST init value before enabling BIST Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 202/222] scsi: qla4xxx: fix double free bug Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 203/222] scsi: bnx2i: fix potential use after free Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 204/222] scsi: target: core: Fix a pr_debug() argument Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 205/222] scsi: lpfc: fix: Coverity: lpfc_get_scsi_buf_s3(): Null pointer dereferences Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 206/222] scsi: hisi_sas: Return directly if init hardware failed Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 207/222] scsi: scsi_transport_sas: Fix memory leak when removing devices Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 208/222] scsi: qla2xxx: Fix qla2x00_request_irqs() for MSI Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 209/222] scsi: qla2xxx: fix rports not being mark as lost in sync fabric scan Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 210/222] scsi: core: scsi_trace: Use get_unaligned_be*() Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 211/222] scsi: lpfc: Fix list corruption detected in lpfc_put_sgl_per_hdwq Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 212/222] scsi: lpfc: Fix hdwq sgl locks and irq handling Greg Kroah-Hartman
2020-01-22  9:29 ` [PATCH 5.4 213/222] scsi: lpfc: Fix a kernel warning triggered by lpfc_get_sgl_per_hdwq() Greg Kroah-Hartman
2020-01-22  9:30 ` [PATCH 5.4 214/222] rtw88: fix potential read outside array boundary Greg Kroah-Hartman
2020-01-22  9:30 ` [PATCH 5.4 215/222] perf probe: Fix wrong address verification Greg Kroah-Hartman
2020-01-22  9:30 ` [PATCH 5.4 216/222] perf script: Allow --time with --reltime Greg Kroah-Hartman
2020-01-22  9:30 ` [PATCH 5.4 217/222] clk: sprd: Use IS_ERR() to validate the return value of syscon_regmap_lookup_by_phandle() Greg Kroah-Hartman
2020-01-22  9:30 ` [PATCH 5.4 218/222] clk: imx7ulp: Correct system clock source option #7 Greg Kroah-Hartman
2020-01-22  9:30 ` [PATCH 5.4 219/222] clk: imx7ulp: Correct DDR clock mux options Greg Kroah-Hartman
2020-01-22  9:30 ` [PATCH 5.4 220/222] regulator: ab8500: Remove SYSCLKREQ from enum ab8505_regulator_id Greg Kroah-Hartman
2020-01-22  9:30 ` [PATCH 5.4 221/222] hwmon: (pmbus/ibm-cffps) Switch LEDs to blocking brightness call Greg Kroah-Hartman
2020-01-22  9:30 ` [PATCH 5.4 222/222] hwmon: (pmbus/ibm-cffps) Fix LED blink behavior Greg Kroah-Hartman
2020-01-22 14:58 ` [PATCH 5.4 000/222] 5.4.14-stable review Jon Hunter
2020-01-22 14:58   ` Jon Hunter
     [not found]   ` <012c6d63-a4cb-ead4-1a7e-d5727426200d-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2020-01-22 15:02     ` Greg Kroah-Hartman
2020-01-22 15:02       ` Greg Kroah-Hartman
2020-01-22 18:09 ` Naresh Kamboju
2020-01-23  6:44   ` Greg Kroah-Hartman
2020-01-22 19:00 ` Guenter Roeck
2020-01-23  6:44   ` Greg Kroah-Hartman
2020-01-22 20:51 ` shuah
2020-01-23  6:44   ` Greg Kroah-Hartman

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=20200126055457.5w4f5jyhkic7cixu@alap3.anarazel.de \
    --to=andres@anarazel.de \
    --cc=axboe@kernel.dk \
    --cc=gregkh@linuxfoundation.org \
    --cc=io-uring@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=metze@samba.org \
    --cc=stable@vger.kernel.org \
    /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.