Re: [GIT PULL] md-6.8 20240216

2024-02-16 Thread Jens Axboe
On 2/16/24 1:13 PM, Song Liu wrote: > Hi Jens, > > Please consider pulling the following fixes for md-6.8 on top of your > block-6.8 branch. The major changes in this set are: > > 1. Fix issues reported for dm-raid [1], by Yu Kuai. Please note that >this PR only contains the first half of

[GIT PULL] md-6.8 20240216

2024-02-16 Thread Song Liu
/show_bug.cgi?id=218459 The following changes since commit 9f3fe29d77ef4e7f7cb5c4c8c59f6dc373e57e78: md: fix a suspicious RCU usage warning (2024-01-24 22:58:00 -0800) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/song/md.git tags/md-6.8-20240216 for you

Re: [PATCH 6/8] net: tcp: tsq: Convert from tasklet to BH workqueue

2024-02-16 Thread Tejun Heo
Hello, Eric. How have you been? On Fri, Feb 16, 2024 at 09:23:00AM +0100, Eric Dumazet wrote: ... > TSQ matters for high BDP, and is very time sensitive. > > Things like slow TX completions (firing from napi poll, BH context) > can hurt TSQ. > > If we add on top of these slow TX completions, an

Re: [PATCH v2] nvdimm/pmem: Fix leak on dax_add_host() failure

2024-02-16 Thread Mathieu Desnoyers
On 2024-02-15 09:43, Mathieu Desnoyers wrote: Fix a leak on dax_add_host() error, where "goto out_cleanup_dax" is done before setting pmem->dax_dev, which therefore issues the two following calls on NULL pointers: Hi Andrew, I notice that you should update the patch you have in your tree

Re: [PATCH 6/8] net: tcp: tsq: Convert from tasklet to BH workqueue

2024-02-16 Thread David Wei
On 2024-02-16 01:23, Eric Dumazet wrote: > !---| > This Message Is From an External Sender > > |---! > > On Fri, Feb 16, 2024 at 6:31 AM Tejun Heo wrote: >> >>

Re: About DM_UDEV_DISABLE_OTHER_RULES_FLAG and DM_NOSCAN

2024-02-16 Thread Martin Wilck
On Thu, 2024-02-15 at 17:45 -0500, Benjamin Marzinski wrote: > On Mon, Feb 12, 2024 at 03:16:27PM +0100, Martin Wilck wrote: > > On Mon, 2024-02-12 at 13:32 +0100, Peter Rajnoha wrote: > > > > > > > > What do you think about keeping a single > > > DM_UDEV_DISABLE_OTHER_RULES_FLAG for this, just

Re: [PATCH 6/8] net: tcp: tsq: Convert from tasklet to BH workqueue

2024-02-16 Thread Eric Dumazet
On Fri, Feb 16, 2024 at 6:31 AM Tejun Heo wrote: > > Hello, > > On Mon, Jan 29, 2024 at 11:11:53PM -1000, Tejun Heo wrote: > > The only generic interface to execute asynchronously in the BH context is > > tasklet; however, it's marked deprecated and has some design flaws. To > > replace tasklets,