linux-block.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Block fixes for 5.14-rc
@ 2021-07-30 15:16 Jens Axboe
  2021-07-30 18:11 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Jens Axboe @ 2021-07-30 15:16 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-block

Hi Linus,

- gendisk freeing fix (Christoph)

- blk-iocost wake ordering fix (Tejun)

- Tag allocation error handling fix (John)

- Loop locking fix. While this isn't the prettiest fix in the world,
  nobody has any good alternatives for 5.14. Something to likely revisit
  for 5.15. (Tetsuo)

Please pull!


The following changes since commit 7054133da39a82c1dc44ce796f13a7cb0d6a0b3c:

  Merge tag 'nvme-5.14-2021-07-22' of git://git.infradead.org/nvme into block-5.14 (2021-07-22 14:23:55 -0600)

are available in the Git repository at:

  git://git.kernel.dk/linux-block.git tags/block-5.14-2021-07-30

for you to fetch changes up to 340e84573878b2b9d63210482af46883366361b9:

  block: delay freeing the gendisk (2021-07-27 19:35:47 -0600)

----------------------------------------------------------------
block-5.14-2021-07-30

----------------------------------------------------------------
Christoph Hellwig (1):
      block: delay freeing the gendisk

John Garry (1):
      blk-mq-sched: Fix blk_mq_sched_alloc_tags() error handling

Tejun Heo (1):
      blk-iocost: fix operation ordering in iocg_wake_fn()

Tetsuo Handa (1):
      loop: reintroduce global lock for safe loop_validate_file() traversal

 block/blk-iocost.c   |  11 +++--
 block/blk-mq-sched.c |  17 ++-----
 block/genhd.c        |   3 +-
 drivers/block/loop.c | 128 ++++++++++++++++++++++++++++++++++++++-------------
 fs/block_dev.c       |   2 +
 5 files changed, 110 insertions(+), 51 deletions(-)

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] Block fixes for 5.14-rc
  2021-07-30 15:16 [GIT PULL] Block fixes for 5.14-rc Jens Axboe
@ 2021-07-30 18:11 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-07-30 18:11 UTC (permalink / raw)
  To: Jens Axboe; +Cc: Linus Torvalds, linux-block

The pull request you sent on Fri, 30 Jul 2021 09:16:39 -0600:

> git://git.kernel.dk/linux-block.git tags/block-5.14-2021-07-30

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/4669e13cd67f8532be12815ed3d37e775a9bdc16

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] Block fixes for 5.14-rc
  2021-07-16 14:24 Jens Axboe
@ 2021-07-16 19:38 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-07-16 19:38 UTC (permalink / raw)
  To: Jens Axboe; +Cc: Linus Torvalds, linux-block

The pull request you sent on Fri, 16 Jul 2021 08:24:57 -0600:

> git://git.kernel.dk/linux-block.git tags/block-5.14-2021-07-16

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/0d18c12b288a177906e31fecfab58ca2243ffc02

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] Block fixes for 5.14-rc
@ 2021-07-16 14:24 Jens Axboe
  2021-07-16 19:38 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Jens Axboe @ 2021-07-16 14:24 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-block

Hi Linus,

A few fixes for the 5.14 release:

- NVMe fixes (via Christoph)
	- fix various races in nvme-pci when shutting down just after
	  probing (Casey Chen)
	- fix a net_device leak in nvme-tcp (Prabhakar Kushwaha)

- Fix regression in xen-blkfront by cleaning up the removal state
  machine (Christoph)

- Fix tag_set and queue cleanup ordering regression in nbd (Wang)

- Fix tag_set and queue cleanup ordering regression in pd (Guoqing)

Please pull!


The following changes since commit a731763fc479a9c64456e0643d0ccf64203100c9:

  blk-cgroup: prevent rcu_sched detected stalls warnings while iterating blkgs (2021-07-07 09:36:36 -0600)

are available in the Git repository at:

  git://git.kernel.dk/linux-block.git tags/block-5.14-2021-07-16

for you to fetch changes up to 05d69d950d9d84218fc9beafd02dea1f6a70e09e:

  xen-blkfront: sanitize the removal state machine (2021-07-15 09:32:34 -0600)

----------------------------------------------------------------
block-5.14-2021-07-16

----------------------------------------------------------------
Casey Chen (2):
      nvme-pci: fix multiple races in nvme_setup_io_queues
      nvme-pci: do not call nvme_dev_remove_admin from nvme_remove

Christoph Hellwig (1):
      xen-blkfront: sanitize the removal state machine

Guoqing Jiang (1):
      pd: fix order of cleaning up the queue and freeing the tagset

Jens Axboe (1):
      Merge tag 'nvme-5.14-2021-07-15' of git://git.infradead.org/nvme into block-5.14

Prabhakar Kushwaha (1):
      nvme-tcp: use __dev_get_by_name instead dev_get_by_name for OPT_HOST_IFACE

Wang Qing (1):
      nbd: fix order of cleaning up the queue and freeing the tagset

 drivers/block/nbd.c          |   2 +-
 drivers/block/paride/pd.c    |   2 +-
 drivers/block/xen-blkfront.c | 224 +++++--------------------------------------
 drivers/nvme/host/pci.c      |  67 +++++++++++--
 drivers/nvme/host/tcp.c      |   4 +-
 5 files changed, 87 insertions(+), 212 deletions(-)

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-07-30 18:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-30 15:16 [GIT PULL] Block fixes for 5.14-rc Jens Axboe
2021-07-30 18:11 ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2021-07-16 14:24 Jens Axboe
2021-07-16 19:38 ` pr-tracker-bot

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).