linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Boris Brezillon <boris.brezillon@free-electrons.com>
To: Richard Weinberger <richard@nod.at>,
	beanhuo@micron.com, dedekind1@gmail.com
Cc: linux-mtd@lists.infradead.org, alex@nextthing.co, goliath@sigma-star.at
Subject: Re: [RFC] UBI: MLC Support v0
Date: Fri, 3 Jun 2016 14:40:54 +0200	[thread overview]
Message-ID: <20160603144054.685b3079@bbrezillon> (raw)
In-Reply-To: <1464609874-15488-1-git-send-email-richard@nod.at>

On Mon, 30 May 2016 14:04:21 +0200
Richard Weinberger <richard@nod.at> wrote:

> as announced in [1] I'd like to submit the very first patch series to
> have MLC support in UBI (and therefore also UBIFS).
> The code has not changed much since the announcement but now the patches
> are in a more reviewable shape. Still not mainline ready but better.
> I'm sending this now as I'm on vacation until June 15th and hope that
> we get some reviews on the concept.
> The series consists of three parts:
> 	a) Generic UBI rework to make the MLC implementation possible.
> 	b) SLC emulation mode to access only lower pages on MLC NAND.
> 	c) LEB consolidation to exploit MLC NAND's higher pages.
> 
> [1] http://lists.infradead.org/pipermail/linux-mtd/2016-April/067322.html

Artem, I know you're quite busy, but that would be great to have your
feedback. Not asking for a detailed review, but at least some comments
on the general approach.

Bean, I'd like to have your feedback too. You proposed a solution to
address the same problem a while ago, and your feedback on this
solution would be valuable.

Thanks,

Boris

> 
> Thanks,
> //richard
> 
> ---
> 
> David Gstir (1):
>       ubi: Add debugfs knob to force LEB consolidation
> 
> Richard Weinberger (12):
>       ubi: Undo "UBI: modify ubi_wl_flush function to clear work queue for a lnum"
>       ubi: Rework UBI worker
>       ubi: auto re-size after UBI thread is ready
>       ubi: Kill ubi->alc_mutex
>       ubi: Get rid of __schedule_ubi_work()
>       ubi: Remove tst_disable_bgt debugfs knob
>       ubi: Move work related functions to work.c
>       ubi: Remove lnum and vol_id from erase work
>       ubi: Remove usless debug info from wear_leveling_worker()
>       ubi: SLC mode
>       ubi: LEB consolidation
>       ubi: Add debugfs knob to trigger LEB consolidation
> 
>  drivers/mtd/ubi/Kconfig       |   4 +
>  drivers/mtd/ubi/Makefile      |   3 +-
>  drivers/mtd/ubi/attach.c      | 407 ++++++++++++++++++--------------
>  drivers/mtd/ubi/build.c       |  41 ++--
>  drivers/mtd/ubi/cdev.c        |  14 +-
>  drivers/mtd/ubi/consolidate.c | 516 ++++++++++++++++++++++++++++++++++++++++
>  drivers/mtd/ubi/debug.c       |  49 ++--
>  drivers/mtd/ubi/debug.h       |  19 +-
>  drivers/mtd/ubi/eba.c         | 429 ++++++++++++++++++++++++++++------
>  drivers/mtd/ubi/fastmap-wl.c  |  33 ++-
>  drivers/mtd/ubi/fastmap.c     | 265 ++++++++++++++-------
>  drivers/mtd/ubi/io.c          | 426 +++++++++++++++++++++++++--------
>  drivers/mtd/ubi/kapi.c        |  43 +---
>  drivers/mtd/ubi/ubi-media.h   |  18 +-
>  drivers/mtd/ubi/ubi.h         | 221 ++++++++++++++----
>  drivers/mtd/ubi/upd.c         |   7 +-
>  drivers/mtd/ubi/vmt.c         | 106 +++++----
>  drivers/mtd/ubi/vtbl.c        |  87 ++++---
>  drivers/mtd/ubi/wl.c          | 531 +++++++++++++++---------------------------
>  drivers/mtd/ubi/work.c        | 332 ++++++++++++++++++++++++++
>  include/linux/mtd/ubi.h       |   1 -
>  21 files changed, 2554 insertions(+), 998 deletions(-)
> 
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/



-- 
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

  parent reply	other threads:[~2016-06-03 12:41 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-30 12:04 [RFC] UBI: MLC Support v0 Richard Weinberger
2016-05-30 12:04 ` [PATCH 01/13] ubi: Undo "UBI: modify ubi_wl_flush function to clear work queue for a lnum" Richard Weinberger
2016-05-30 12:04 ` [PATCH 02/13] ubi: Rework UBI worker Richard Weinberger
2016-05-30 12:04 ` [PATCH 03/13] ubi: auto re-size after UBI thread is ready Richard Weinberger
2016-05-30 12:04 ` [PATCH 04/13] ubi: Kill ubi->alc_mutex Richard Weinberger
2016-05-30 14:05   ` Richard Weinberger
2016-05-30 12:04 ` [PATCH 05/13] ubi: Get rid of __schedule_ubi_work() Richard Weinberger
2016-05-30 12:04 ` [PATCH 06/13] ubi: Remove tst_disable_bgt debugfs knob Richard Weinberger
2016-05-30 12:04 ` [PATCH 07/13] ubi: Move work related functions to work.c Richard Weinberger
2016-05-30 12:04 ` [PATCH 08/13] ubi: Remove lnum and vol_id from erase work Richard Weinberger
2016-05-30 12:04 ` [PATCH 09/13] ubi: Remove usless debug info from wear_leveling_worker() Richard Weinberger
2016-05-30 12:04 ` [PATCH 10/13] ubi: SLC mode Richard Weinberger
2016-05-30 12:04 ` [PATCH 11/13] ubi: LEB consolidation Richard Weinberger
2016-06-07 12:20   ` Boris Brezillon
2016-05-30 12:04 ` [PATCH 12/13] ubi: Add debugfs knob to force " Richard Weinberger
2016-05-30 12:04 ` [PATCH 13/13] ubi: Add debugfs knob to trigger " Richard Weinberger
2016-06-03 12:40 ` Boris Brezillon [this message]
2016-06-24 14:48   ` [RFC] UBI: MLC Support v0 Bean Huo (beanhuo)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160603144054.685b3079@bbrezillon \
    --to=boris.brezillon@free-electrons.com \
    --cc=alex@nextthing.co \
    --cc=beanhuo@micron.com \
    --cc=dedekind1@gmail.com \
    --cc=goliath@sigma-star.at \
    --cc=linux-mtd@lists.infradead.org \
    --cc=richard@nod.at \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).