public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/25] LightNVM patches for 4.5
@ 2016-01-12  6:49 Matias Bjørling
  2016-01-12  6:49 ` [PATCH 01/25] lightnvm: fix bio submission issue Matias Bjørling
                   ` (25 more replies)
  0 siblings, 26 replies; 28+ messages in thread
From: Matias Bjørling @ 2016-01-12  6:49 UTC (permalink / raw)
  To: linux-block, linux-kernel, axboe; +Cc: Matias Bjørling

Hi Jens,

Here is the collected patches for LightNVM ready for the 4.5 window.
They covers cover the following:

  - Several error handling fixes by Wenwei, and Javier.
  - Statistics bug reported and fixed by Chao.
  - Added two preparation patches for host-side write buffering, by
    Javier.
  - Fix by Wenwei to correctly place block upon reclaim fail.
  - Added sync support and introduced nvm_submit_ppa.
  - Fixed ordering bug when plane ppas were sent before sectors ppas.
  - Added missing bad block type.
  - Added mccap and lower page table support to support SLC.
  - Added on disk initialization to allow specific media manager to be
    loaded upon device scan.
  - Added factory reset to erase flash blocks on a device.
  - Added ioctls for initialization and factory reset.
  - Several refactoring patches to prepare for initialization and
    factory reset.

They are based on top of 4.4-rc8.

Please pick up when convenient.

Thank you,
Matias

Chao Yu (1):
  lightnvm: fix incorrect nr_free_blocks stat

Javier Gonzalez (1):
  lightnvm: add check after mempool allocation

Javier González (2):
  lightnvm: reference rrpc lun in rrpc block
  lightnvm: manage open and closed blocks separately

Matias Bjørling (15):
  lightnvm: move ppa erase logic to core
  lightnvm: refactor rqd ppa list into set/free
  lightnvm: refactor end_io functions for sync
  lightnvm: return the get_bb_tbl return value
  lightnvm: sectors first in ppa list
  lightnvm: support multiple ppas in nvm_erase_ppa
  lightnvm: move rq->error to nvm_rq->error
  lightnvm: introduce nvm_submit_ppa
  lightnvm: fix missing grown bad block type
  lightnvm: add mccap support
  lightnvm: introduce mlc lower page table mappings
  lightnvm: core on-disk initialization
  lightnvm: introduce ioctl to initialize device
  lightnvm: use system block for mm initialization
  lightnvm: introduce factory reset

Wenwei Tao (6):
  lightnvm: fix bio submission issue
  lightnvm: unlock rq and free ppa_list on submission fail
  lightnvm: check bi_error in gc
  lightnvm: put block back to gc list on its reclaim fail
  lightnvm: fix locking and mempool in rrpc_lun_gc
  lightnvm: move the pages per block check out of the loop

 drivers/block/null_blk.c      |   3 +-
 drivers/lightnvm/Makefile     |   2 +-
 drivers/lightnvm/core.c       | 340 ++++++++++++++++++-
 drivers/lightnvm/gennvm.c     | 202 +++++-------
 drivers/lightnvm/rrpc.c       | 104 ++++--
 drivers/lightnvm/rrpc.h       |  13 +-
 drivers/lightnvm/sysblk.c     | 741 ++++++++++++++++++++++++++++++++++++++++++
 drivers/nvme/host/lightnvm.c  |  32 +-
 include/linux/lightnvm.h      | 119 ++++++-
 include/uapi/linux/lightnvm.h |  31 ++
 10 files changed, 1415 insertions(+), 172 deletions(-)
 create mode 100644 drivers/lightnvm/sysblk.c

-- 
2.1.4

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

end of thread, other threads:[~2016-01-13  0:09 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-12  6:49 [PATCH 00/25] LightNVM patches for 4.5 Matias Bjørling
2016-01-12  6:49 ` [PATCH 01/25] lightnvm: fix bio submission issue Matias Bjørling
2016-01-12  6:49 ` [PATCH 02/25] lightnvm: fix incorrect nr_free_blocks stat Matias Bjørling
2016-01-12  6:49 ` [PATCH 03/25] lightnvm: add check after mempool allocation Matias Bjørling
2016-01-12  6:49 ` [PATCH 04/25] lightnvm: unlock rq and free ppa_list on submission fail Matias Bjørling
2016-01-12  6:49 ` [PATCH 05/25] lightnvm: move ppa erase logic to core Matias Bjørling
2016-01-12  6:49 ` [PATCH 06/25] lightnvm: refactor rqd ppa list into set/free Matias Bjørling
2016-01-12  6:49 ` [PATCH 07/25] lightnvm: refactor end_io functions for sync Matias Bjørling
2016-01-12  6:49 ` [PATCH 08/25] lightnvm: return the get_bb_tbl return value Matias Bjørling
2016-01-12  6:49 ` [PATCH 09/25] lightnvm: check bi_error in gc Matias Bjørling
2016-01-12  6:49 ` [PATCH 10/25] lightnvm: put block back to gc list on its reclaim fail Matias Bjørling
2016-01-12  6:49 ` [PATCH 11/25] lightnvm: fix locking and mempool in rrpc_lun_gc Matias Bjørling
2016-01-12  6:49 ` [PATCH 12/25] lightnvm: sectors first in ppa list Matias Bjørling
2016-01-12  6:49 ` [PATCH 13/25] lightnvm: move the pages per block check out of the loop Matias Bjørling
2016-01-12  6:49 ` [PATCH 14/25] lightnvm: support multiple ppas in nvm_erase_ppa Matias Bjørling
2016-01-12  6:49 ` [PATCH 15/25] lightnvm: move rq->error to nvm_rq->error Matias Bjørling
2016-01-12  6:49 ` [PATCH 16/25] lightnvm: introduce nvm_submit_ppa Matias Bjørling
2016-01-12  6:49 ` [PATCH 17/25] lightnvm: reference rrpc lun in rrpc block Matias Bjørling
2016-01-12  6:49 ` [PATCH 18/25] lightnvm: fix missing grown bad block type Matias Bjørling
2016-01-12  6:49 ` [PATCH 19/25] lightnvm: manage open and closed blocks separately Matias Bjørling
2016-01-12  6:49 ` [PATCH 20/25] lightnvm: add mccap support Matias Bjørling
2016-01-12  6:49 ` [PATCH 21/25] lightnvm: introduce mlc lower page table mappings Matias Bjørling
2016-01-12  6:49 ` [PATCH 22/25] lightnvm: core on-disk initialization Matias Bjørling
2016-01-12  6:49 ` [PATCH 23/25] lightnvm: introduce ioctl to initialize device Matias Bjørling
2016-01-12  6:49 ` [PATCH 24/25] lightnvm: use system block for mm initialization Matias Bjørling
2016-01-12  6:49 ` [PATCH 25/25] lightnvm: introduce factory reset Matias Bjørling
2016-01-12 15:19 ` [PATCH 00/25] LightNVM patches for 4.5 Jens Axboe
2016-01-13  0:09   ` Matias Bjorling

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox