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

Hi Linus,

- Use kvfree_sensitive() for the block keyslot free (Eric)
- Sync blk-mq debugfs flags (Hou)
- Memory leak fix in virtio-blk error path (Hou)

Please pull!

The following changes since commit 1b52671d79c4b9fdc91a85f99f69b7c91a3b1b71:

  Merge branch 'nvme-5.8' of git://git.infradead.org/nvme into block-5.8 (2020-06-25 12:57:17 -0600)

are available in the Git repository at:

  git://git.kernel.dk/linux-block.git tags/block-5.8-2020-07-01

for you to fetch changes up to e7eea44eefbdd5f0345a0a8b80a3ca1c21030d06:

  virtio-blk: free vblk-vqs in error path of virtblk_probe() (2020-06-30 19:02:58 -0600)

----------------------------------------------------------------
block-5.8-2020-07-01

----------------------------------------------------------------
Eric Biggers (1):
      block/keyslot-manager: use kvfree_sensitive()

Hou Tao (2):
      blk-mq-debugfs: update blk_queue_flag_name[] accordingly for new flags
      virtio-blk: free vblk-vqs in error path of virtblk_probe()

 block/blk-mq-debugfs.c     | 3 +++
 block/keyslot-manager.c    | 3 +--
 drivers/block/virtio_blk.c | 1 +
 include/linux/blkdev.h     | 1 +
 4 files changed, 6 insertions(+), 2 deletions(-)

-- 
Jens Axboe


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

* Re: [GIT PULL] Block fixes for 5.8-rc4
  2020-07-02  4:31 [GIT PULL] Block fixes for 5.8-rc4 Jens Axboe
@ 2020-07-02 22:30 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-07-02 22:30 UTC (permalink / raw)
  To: Jens Axboe; +Cc: Linus Torvalds, linux-block

The pull request you sent on Wed, 1 Jul 2020 22:31:45 -0600:

> git://git.kernel.dk/linux-block.git tags/block-5.8-2020-07-01

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/7cc2a8ea104820dd9e702202621e8fd4d9f6c8cf

Thank you!

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

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

* Re: [GIT PULL] Block fixes for 5.8-rc4
  2020-07-05 13:05 Jens Axboe
@ 2020-07-05 18:00 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-07-05 18:00 UTC (permalink / raw)
  To: Jens Axboe; +Cc: Linus Torvalds, linux-block

The pull request you sent on Sun, 5 Jul 2020 07:05:55 -0600:

> git://git.kernel.dk/linux-block.git tags/block-5.8-2020-07-05

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/29206c6314a3e5242b23b61cd1270cba9e93b415

Thank you!

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

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

* [GIT PULL] Block fixes for 5.8-rc4
@ 2020-07-05 13:05 Jens Axboe
  2020-07-05 18:00 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Jens Axboe @ 2020-07-05 13:05 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-block

Hi Linus,

A few later fixes came in after the initial -rc4 pull request, let's
flush them out before the release is tagged.

- NVMe pull request from Christoph
	- Fix crash in multi-path disk add (Christoph)
	- Fix ignore of identify error (Sagi)
- Fix a compiler complaint that a function should be static (Wei)

Please pull!


The following changes since commit e7eea44eefbdd5f0345a0a8b80a3ca1c21030d06:

  virtio-blk: free vblk-vqs in error path of virtblk_probe() (2020-06-30 19:02:58 -0600)

are available in the Git repository at:

  git://git.kernel.dk/linux-block.git tags/block-5.8-2020-07-05

for you to fetch changes up to 3197d48a7c04eee3e50bd54ef7e17e383b8a919e:

  block: make function __bio_integrity_free() static (2020-07-02 12:38:18 -0600)

----------------------------------------------------------------
block-5.8-2020-07-05

----------------------------------------------------------------
Christoph Hellwig (1):
      nvme: fix a crash in nvme_mpath_add_disk

Jens Axboe (1):
      Merge branch 'nvme-5.8' of git://git.infradead.org/nvme into block-5.8

Sagi Grimberg (1):
      nvme: fix identify error status silent ignore

Wei Yongjun (1):
      block: make function __bio_integrity_free() static

 block/bio-integrity.c         |  3 ++-
 drivers/nvme/host/core.c      | 12 +++++++++---
 drivers/nvme/host/multipath.c |  7 ++++---
 3 files changed, 15 insertions(+), 7 deletions(-)

-- 
Jens Axboe


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

end of thread, other threads:[~2020-07-05 18:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-02  4:31 [GIT PULL] Block fixes for 5.8-rc4 Jens Axboe
2020-07-02 22:30 ` pr-tracker-bot
2020-07-05 13:05 Jens Axboe
2020-07-05 18:00 ` 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).