linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Block fixes for 4.5-final
@ 2016-03-03 17:25 Jens Axboe
  2016-03-03 20:57 ` Linus Torvalds
  0 siblings, 1 reply; 9+ messages in thread
From: Jens Axboe @ 2016-03-03 17:25 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, linux-block

Hi Linus,

A set of fixes for 4.5-rc6 - it's a lot bigger than I would like at this
point, but there's really nothing in here that we should not merge for
4.5 final - with a possible exception being a few of the lightnvm fixes,
that has a cleanup part before a fix, and the cgroup writeback enable
for block devices from Shaohua (which we'd like to get into 4.5 final).
The grunt of it should have gone in last week, but continued bug fixing
for NVMe meant that it got pushed to this week.

In details, this pull request contains:

- Various fixes for lightnvm, from Alan, Javier, and Matias.

- Three bug fixes for xen blk-front/back from Jan Beulich, and Konrad.

- Extensive set of fixes for NVMe, fixing hot unplug problems and a
  regression in length of user commands supported. From Keith and
  Christoph, single fix from me.

- blk-mq potential oops fix in tag depth updates, from Keith.

- A fix for an umount with cgroup writeback regression in this series
  from Tejun.

- Enable block device cgroup writeback, from Shaohua. The grunt of the
  code for accounting was already there, this just enables it.

- Set of 4 patches for the block core on merging, from Ming Lei.

Please pull!


  git://git.kernel.dk/linux-block.git for-linus


----------------------------------------------------------------
Alan (1):
      lightnvm: fix up nonsensical configure overrun checking

Christoph Hellwig (4):
      nvme: set queue limits for the admin queue
      nvme: fix max_segments integer truncation
      block: fix blk_rq_get_max_sectors for driver private requests
      block: support large requests in blk_rq_map_user_iov

Jan Beulich (2):
      xen-blkfront: rename indirect descriptor parameter
      xen-blkback: advertise indirect segment support earlier

Javier González (2):
      lightnvm: update closed list outside of intr context
      lightnvm: generalize rrpc ppa calculations

Jens Axboe (2):
      Merge branch 'stable/for-jens-4.5' of git://git.kernel.org/.../konrad/xen into for-linus
      block: use cleaner variant of checking for block requests

Keith Busch (8):
      blk-mq: Fix NULL pointer updating nr_requests
      NVMe: Don't unmap controller registers on reset
      NVMe: Use IDA for namespace disk naming
      NVMe: Fix namespace removal deadlock
      NVMe: Simplify device reset failure
      NVMe: Move error handling to failed reset handler
      NVMe: Don't allow unsupported flags
      NVMe: Fix 0-length integrity payload

Konrad Rzeszutek Wilk (1):
      xen/blback: Fit the important information of the thread in 17 characters

Matias Bjørling (3):
      lightnvm: fold get bb tbl when using dual/quad plane mode
      lightnvm: rename ->nr_pages to ->nr_sects
      lightnvm: remove struct nvm_dev->total_blocks

Ming Lei (4):
      block: bio: introduce helpers to get the 1st and last bvec
      block: check virt boundary in bio_will_gap()
      block: get the 1st and last bvec via helpers
      block: merge: get the 1st and last bvec via helpers

Shaohua Li (1):
      block-dev: enable writeback cgroup support

Tejun Heo (1):
      writeback: flush inode cgroup wb switches instead of pinning super_block

 block/blk-map.c                    |  91 ++++++++++++++--------
 block/blk-merge.c                  |   8 +-
 block/blk-mq.c                     |   2 +
 drivers/block/xen-blkback/xenbus.c |  20 ++---
 drivers/block/xen-blkfront.c       |   6 +-
 drivers/lightnvm/core.c            |  19 ++---
 drivers/lightnvm/gennvm.c          |   7 +-
 drivers/lightnvm/rrpc.c            |  98 +++++++++++++-----------
 drivers/lightnvm/rrpc.h            |  15 +++-
 drivers/nvme/host/core.c           | 111 +++++++++++++++++++--------
 drivers/nvme/host/lightnvm.c       |  46 ++++++++++--
 drivers/nvme/host/nvme.h           |   8 ++
 drivers/nvme/host/pci.c            | 149 ++++++++++++++++++++++---------------
 fs/block_dev.c                     |   6 +-
 fs/fs-writeback.c                  |  54 ++++++++++----
 fs/super.c                         |   1 +
 include/linux/bio.h                |  37 +++++++++
 include/linux/blkdev.h             |  25 +++++--
 include/linux/lightnvm.h           |   8 +-
 include/linux/writeback.h          |   5 ++
 20 files changed, 484 insertions(+), 232 deletions(-)

-- 
Jens Axboe

^ permalink raw reply	[flat|nested] 9+ messages in thread
* [GIT PULL] Block fixes for 4.5-final
@ 2016-03-04 22:02 Jens Axboe
  0 siblings, 0 replies; 9+ messages in thread
From: Jens Axboe @ 2016-03-04 22:02 UTC (permalink / raw)
  To: torvalds; +Cc: linux-block, linux-kernel

Hi Linus,

Round 2 of this. I cut back to the bare necessities, the patch is still
larger than it usually would be at this time, due to the number of NVMe
fixes in there. This pull request contains:

- The 4 core fixes from Ming, that fix both problems with exceeding the
  virtual boundary limit in case of merging, and the gap checking for
  cloned bio's.

- NVMe fixes from Keith and Christoph:

        - Regression on larger user commands, causing problems with
          reading log pages (for instance). This touches both NVMe,
          and the block core since that is now generally utilized also
          for these types of commands.

        - Hot removal fixes.

        - User exploitable issue with passthrough IO commands, if !length
          is given, causing us to fault on writing to the zero
          page.

        - Fix for a hang under error conditions

- And finally, the current series regression for umount with cgroup
  writeback, where the final flush would happen async and hence open up
  window after umount where the device wasn't consistent. fsck right
  after umount would show this. From Tejun.

Please pull this round, and we'll ensure that the load is distributed
better going forward. Thanks.


  git://git.kernel.dk/linux-block.git for-linus2


----------------------------------------------------------------
Christoph Hellwig (4):
      nvme: set queue limits for the admin queue
      nvme: fix max_segments integer truncation
      block: fix blk_rq_get_max_sectors for driver private requests
      block: support large requests in blk_rq_map_user_iov

Keith Busch (7):
      NVMe: Don't unmap controller registers on reset
      NVMe: Use IDA for namespace disk naming
      NVMe: Fix namespace removal deadlock
      NVMe: Simplify device reset failure
      NVMe: Move error handling to failed reset handler
      NVMe: Don't allow unsupported flags
      NVMe: Fix 0-length integrity payload

Ming Lei (4):
      block: bio: introduce helpers to get the 1st and last bvec
      block: check virt boundary in bio_will_gap()
      block: get the 1st and last bvec via helpers
      block: merge: get the 1st and last bvec via helpers

Tejun Heo (1):
      writeback: flush inode cgroup wb switches instead of pinning super_block

 block/blk-map.c           |  91 ++++++++++++++++++----------
 block/blk-merge.c         |   8 +--
 drivers/nvme/host/core.c  | 111 ++++++++++++++++++++++++----------
 drivers/nvme/host/nvme.h  |   8 +++
 drivers/nvme/host/pci.c   | 149 ++++++++++++++++++++++++++++------------------
 fs/fs-writeback.c         |  54 +++++++++++++----
 fs/super.c                |   1 +
 include/linux/bio.h       |  37 ++++++++++++
 include/linux/blkdev.h    |  25 +++++---
 include/linux/writeback.h |   5 ++
 10 files changed, 341 insertions(+), 148 deletions(-)

-- 
Jens Axboe

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

end of thread, other threads:[~2016-03-04 22:02 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-03 17:25 [GIT PULL] Block fixes for 4.5-final Jens Axboe
2016-03-03 20:57 ` Linus Torvalds
2016-03-03 21:11   ` Linus Torvalds
2016-03-03 21:13     ` Jens Axboe
2016-03-03 21:11   ` Jens Axboe
2016-03-03 21:20     ` Linus Torvalds
2016-03-03 21:28       ` Jens Axboe
2016-03-03 21:53         ` Jens Axboe
  -- strict thread matches above, loose matches on Subject: below --
2016-03-04 22:02 Jens Axboe

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