mbox series

[GIT,PULL] md-next 20220523

Message ID 1711B04D-64AF-4398-8852-57AF79260EE3@fb.com (mailing list archive)
State New, archived
Headers show
Series [GIT,PULL] md-next 20220523 | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/song/md.git md-next

Message

Song Liu May 23, 2022, 6:11 p.m. UTC
Hi Jens, 

Please consider pulling the following changes for md-next on top of your 
for-5.19/drivers branch. The major changes are:

  - Remove uses of bdevname, by Christoph Hellwig;
  - Bug fixes by Guoqing Jiang, and Xiao Ni. 

Thanks,
Song


The following changes since commit 537b9f2bf60f4bbd8ab89cea16aaab70f0c1560d:

  mtip32xx: fix typo in comment (2022-05-21 06:32:27 -0600)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/song/md.git md-next

for you to fetch changes up to 42b805af102471f53e3c7867b8c2b502ea4eef7e:

  md: fix double free of io_acct_set bioset (2022-05-22 23:07:22 -0700)

----------------------------------------------------------------
Christoph Hellwig (1):
      md: remove most calls to bdevname

Guoqing Jiang (2):
      md: don't unregister sync_thread with reconfig_mutex held
      md: protect md_unregister_thread from reentrancy

Xiao Ni (2):
      md: Don't set mddev private to NULL in raid0 pers->free
      md: fix double free of io_acct_set bioset

 drivers/md/dm-raid.c      |   2 +-
 drivers/md/md-linear.c    |   5 ++---
 drivers/md/md-multipath.c |  15 ++++++---------
 drivers/md/md.c           | 185 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------------------------------------------------
 drivers/md/md.h           |   2 +-
 drivers/md/raid0.c        |  29 ++++++++++++----------------
 drivers/md/raid1.c        |  24 ++++++++++-------------
 drivers/md/raid10.c       |  54 ++++++++++++++++++++++------------------------------
 drivers/md/raid5-cache.c  |   5 ++---
 drivers/md/raid5-ppl.c    |  27 ++++++++++++--------------
 drivers/md/raid5.c        |  37 ++++++++++++++++--------------------
 11 files changed, 168 insertions(+), 217 deletions(-)

Comments

Jens Axboe May 23, 2022, 6:18 p.m. UTC | #1
On 5/23/22 12:11 PM, Song Liu wrote:
> Hi Jens, 
> 
> Please consider pulling the following changes for md-next on top of your 
> for-5.19/drivers branch. The major changes are:
> 
>   - Remove uses of bdevname, by Christoph Hellwig;
>   - Bug fixes by Guoqing Jiang, and Xiao Ni. 

Grmbl, why are these sent in so late?? I spot checked a few and they are
~11 days old since you said you applied them. It seems like I have to
bring this up every merge window, but changes should be sent in AT LEAST
a week in advance so they can get some linux-next soak at least.

I'll pull them and then do _another_ pull request in this merge window,
but they will sit for a week or so before going any further.
Song Liu May 23, 2022, 6:33 p.m. UTC | #2
> On May 23, 2022, at 11:18 AM, Jens Axboe <axboe@kernel.dk> wrote:
> 
> On 5/23/22 12:11 PM, Song Liu wrote:
>> Hi Jens, 
>> 
>> Please consider pulling the following changes for md-next on top of your 
>> for-5.19/drivers branch. The major changes are:
>> 
>>  - Remove uses of bdevname, by Christoph Hellwig;
>>  - Bug fixes by Guoqing Jiang, and Xiao Ni. 
> 
> Grmbl, why are these sent in so late?? I spot checked a few and they are
> ~11 days old since you said you applied them. It seems like I have to
> bring this up every merge window, but changes should be sent in AT LEAST
> a week in advance so they can get some linux-next soak at least.
> 
> I'll pull them and then do _another_ pull request in this merge window,
> but they will sit for a week or so before going any further.

I am sorry for the trouble. There isn't particular reason to delay these. 
I will get future patches in sooner. 

Song