mbox series

[GIT,PULL] nvme updates for 5.10

Message ID 20201008141041.GA1493538@infradead.org (mailing list archive)
State New, archived
Headers show
Series [GIT,PULL] nvme updates for 5.10 | expand

Pull-request

git://git.infradead.org/nvme.git tags/nvme-5.10-2020-10-08

Message

Christoph Hellwig Oct. 8, 2020, 2:10 p.m. UTC
The following changes since commit 103fbf8e4020845e4fcf63819288cedb092a3c91:

  scsi: megaraid_sas: Added support for shared host tagset for cpuhotplug (2020-10-06 08:33:44 -0600)

are available in the Git repository at:

  git://git.infradead.org/nvme.git tags/nvme-5.10-2020-10-08

for you to fetch changes up to c4485252cf36ae62c8bf12c4aede72345cad0d2b:

  nvme-core: remove extra condition for vwc (2020-10-07 07:56:20 +0200)

----------------------------------------------------------------
nvme update for 5.8:

 - fix a controller refcount leak on init failure (Chaitanya Kulkarni)
 - misc cleanups (Chaitanya Kulkarni)
 - major refactoring of the scanning code (me)

----------------------------------------------------------------
Chaitanya Kulkarni (3):
      nvme-loop: don't put ctrl on nvme_init_ctrl error
      nvme-core: remove extra variable
      nvme-core: remove extra condition for vwc

Christoph Hellwig (20):
      block: optimize blk_queue_zoned_model for !CONFIG_BLK_DEV_ZONED
      nvme: fix initialization of the zone bitmaps
      nvme: remove the disk argument to nvme_update_zone_info
      nvme: rename nvme_validate_ns to nvme_validate_or_alloc_ns
      nvme: rename _nvme_revalidate_disk
      nvme: rename __nvme_revalidate_disk
      nvme: lift the check for an unallocated namespace into nvme_identify_ns
      nvme: call nvme_identify_ns as the first thing in nvme_alloc_ns_block
      nvme: factor out a nvme_configure_metadata helper
      nvme: freeze the queue over ->lba_shift updates
      nvme: clean up the check for too large logic block sizes
      nvme: remove the 0 lba_shift check in nvme_update_ns_info
      nvme: set the queue limits in nvme_update_ns_info
      nvme: update the known admin effects
      nvme: remove nvme_update_formats
      nvme: revalidate zone bitmaps in nvme_update_ns_info
      nvme: query namespace identifiers before adding the namespace
      nvme: move nvme_validate_ns
      nvme: refactor nvme_validate_ns
      nvme: remove nvme_identify_ns_list

 drivers/nvme/host/core.c   | 455 ++++++++++++++++++++-------------------------
 drivers/nvme/host/nvme.h   |   9 +-
 drivers/nvme/host/zns.c    |  16 +-
 drivers/nvme/target/loop.c |   4 +-
 include/linux/blkdev.h     |   4 +-
 5 files changed, 220 insertions(+), 268 deletions(-)

Comments

Jens Axboe Oct. 8, 2020, 2:52 p.m. UTC | #1
On 10/8/20 8:10 AM, Christoph Hellwig wrote:
> The following changes since commit 103fbf8e4020845e4fcf63819288cedb092a3c91:
> 
>   scsi: megaraid_sas: Added support for shared host tagset for cpuhotplug (2020-10-06 08:33:44 -0600)
> 
> are available in the Git repository at:
> 
>   git://git.infradead.org/nvme.git tags/nvme-5.10-2020-10-08
> 
> for you to fetch changes up to c4485252cf36ae62c8bf12c4aede72345cad0d2b:
> 
>   nvme-core: remove extra condition for vwc (2020-10-07 07:56:20 +0200)
> 
> ----------------------------------------------------------------
> nvme update for 5.8:
> 
>  - fix a controller refcount leak on init failure (Chaitanya Kulkarni)
>  - misc cleanups (Chaitanya Kulkarni)
>  - major refactoring of the scanning code (me)

Seems to be a typo here, 5.8?
Christoph Hellwig Oct. 8, 2020, 2:56 p.m. UTC | #2
On Thu, Oct 08, 2020 at 08:52:50AM -0600, Jens Axboe wrote:
> On 10/8/20 8:10 AM, Christoph Hellwig wrote:
> > The following changes since commit 103fbf8e4020845e4fcf63819288cedb092a3c91:
> > 
> >   scsi: megaraid_sas: Added support for shared host tagset for cpuhotplug (2020-10-06 08:33:44 -0600)
> > 
> > are available in the Git repository at:
> > 
> >   git://git.infradead.org/nvme.git tags/nvme-5.10-2020-10-08
> > 
> > for you to fetch changes up to c4485252cf36ae62c8bf12c4aede72345cad0d2b:
> > 
> >   nvme-core: remove extra condition for vwc (2020-10-07 07:56:20 +0200)
> > 
> > ----------------------------------------------------------------
> > nvme update for 5.8:
> > 
> >  - fix a controller refcount leak on init failure (Chaitanya Kulkarni)
> >  - misc cleanups (Chaitanya Kulkarni)
> >  - major refactoring of the scanning code (me)
> 
> Seems to be a typo here, 5.8?

should be 5.10 of course.

Do you want a resend as this is also in the tag?
Jens Axboe Oct. 8, 2020, 2:57 p.m. UTC | #3
On 10/8/20 8:56 AM, Christoph Hellwig wrote:
> On Thu, Oct 08, 2020 at 08:52:50AM -0600, Jens Axboe wrote:
>> On 10/8/20 8:10 AM, Christoph Hellwig wrote:
>>> The following changes since commit 103fbf8e4020845e4fcf63819288cedb092a3c91:
>>>
>>>   scsi: megaraid_sas: Added support for shared host tagset for cpuhotplug (2020-10-06 08:33:44 -0600)
>>>
>>> are available in the Git repository at:
>>>
>>>   git://git.infradead.org/nvme.git tags/nvme-5.10-2020-10-08
>>>
>>> for you to fetch changes up to c4485252cf36ae62c8bf12c4aede72345cad0d2b:
>>>
>>>   nvme-core: remove extra condition for vwc (2020-10-07 07:56:20 +0200)
>>>
>>> ----------------------------------------------------------------
>>> nvme update for 5.8:
>>>
>>>  - fix a controller refcount leak on init failure (Chaitanya Kulkarni)
>>>  - misc cleanups (Chaitanya Kulkarni)
>>>  - major refactoring of the scanning code (me)
>>
>> Seems to be a typo here, 5.8?
> 
> should be 5.10 of course.
> 
> Do you want a resend as this is also in the tag?

Yeah I think that'd be best, thanks.