public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Brian Norris <computersforpeace@gmail.com>
To: "Peter Pan 潘栋 (peterpandong)" <peterpandong@micron.com>
Cc: "dwmw2@infradead.org" <dwmw2@infradead.org>,
	"fransklaver@gmail.com" <fransklaver@gmail.com>,
	"wsa@the-dreams.de" <wsa@the-dreams.de>,
	"zajec5@gmail.com" <zajec5@gmail.com>,
	"boris.brezillon@free-electrons.com"
	<boris.brezillon@free-electrons.com>,
	"baruch@tkos.co.il" <baruch@tkos.co.il>,
	"ezequiel.garcia@free-electrons.com"
	<ezequiel.garcia@free-electrons.com>,
	"kdasu.kdev@gmail.com" <kdasu.kdev@gmail.com>,
	"rogerq@ti.com" <rogerq@ti.com>,
	"asierra@xes-inc.com" <asierra@xes-inc.com>,
	bpqw <bpqw@micron.com>,
	"linux-mtd@lists.infradead.org" <linux-mtd@lists.infradead.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"Frank Liu 刘群 (frankliu)" <frankliu@micron.com>,
	"Kamil Debski" <Kamil.Debski@imgtec.com>,
	"Ionela Voinescu" <Ionela.Voinescu@imgtec.com>,
	"Bean Huo 霍斌斌 (beanhuo)" <beanhuo@micron.com>
Subject: Re: [PATCH 12/12] mtd: nand-bbt: move nand_bbt.c to mtd folder
Date: Fri, 25 Sep 2015 10:37:12 -0700	[thread overview]
Message-ID: <20150925173712.GM31505@google.com> (raw)
In-Reply-To: <87F60714EC601C4C83DFF1D2E3D390A0326CC91F@NTXXIAMBX02.xacn.micron.com>

Hi Peter,

First of all, thanks for taking the time to try to address my
long-delayed comments. I hope to give this a proper look soon. (I also
hope you can fix the email threading soon! I know that's a pain...)

But first, a simpler comment:

On Fri, Sep 25, 2015 at 06:48:05AM +0000, Peter Pan 潘栋 (peterpandong) wrote:
> Since struct nand_chip is removed from nand_bbt.c, BBT is now
> shareable. Both NAND and SPI NAND can use it. So move nand_bbt.c
> from nand/ foler to mtd/ folder and create MTD_NAND_BBT config.
> Both NAND and SPI NAND should depend on MTD_NAND_BBT.
> 
> Signed-off-by: Peter Pan <peterpandong@micron.com>
> ---
>  drivers/mtd/Kconfig         |    7 +
>  drivers/mtd/Makefile        |    1 +
>  drivers/mtd/nand/Kconfig    |    2 +-
>  drivers/mtd/nand/Makefile   |    2 +-
>  drivers/mtd/nand/nand_bbt.c | 1289 -------------------------------------------
>  drivers/mtd/nand_bbt.c      | 1289 +++++++++++++++++++++++++++++++++++++++++++
>  6 files changed, 1299 insertions(+), 1291 deletions(-)
>  delete mode 100644 drivers/mtd/nand/nand_bbt.c
>  create mode 100644 drivers/mtd/nand_bbt.c
> 
[...]
> diff --git a/drivers/mtd/nand/nand_bbt.c b/drivers/mtd/nand/nand_bbt.c
> deleted file mode 100644
> index 47c1084..0000000
> --- a/drivers/mtd/nand/nand_bbt.c
> +++ /dev/null
> @@ -1,1289 +0,0 @@

[snip deleting entire file]

> diff --git a/drivers/mtd/nand_bbt.c b/drivers/mtd/nand_bbt.c
> new file mode 100644
> index 0000000..47c1084
> --- /dev/null
> +++ b/drivers/mtd/nand_bbt.c
> @@ -0,0 +1,1289 @@

[snip adding the whole file again -- exactly the same I hope?]

When moving files, it helps if you can use the '-M' (or
'--find-renames') option to git-format-patch. That will give much
smaller output that's easier to review. And if you had to change
anything in the move, it should also help highlight exactly what
changed, instead of including the entire file "diff".

Regards,
Brian

P.S. Incidentally, this should also work around your issues with the
copyright symbol. But then, I suspect that some people have used these
sorts of non-ASCII characters just to fish out issues with mail
clients/MTAs like yours :)

  reply	other threads:[~2015-09-25 17:37 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <87F60714EC601C4C83DFF1D2E3D390A0326CC7C2@NTXXIAMBX02.xacn.micron.com>
2015-09-25  6:34 ` [PATCH 00/12] mtd: nand_bbt: introduce independent nand BBT Peter Pan 潘栋 (peterpandong)
2015-09-25  6:48   ` [PATCH 12/12] mtd: nand-bbt: move nand_bbt.c to mtd folder Peter Pan 潘栋 (peterpandong)
2015-09-25 17:37     ` Brian Norris [this message]
2015-09-28  8:37       ` Peter Pan 潘栋 (peterpandong)
2015-09-25  6:53   ` [PATCH 00/12] mtd: nand_bbt: introduce independent nand BBT Boris Brezillon
2015-09-25  8:36     ` Peter Pan 潘栋 (peterpandong)

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=20150925173712.GM31505@google.com \
    --to=computersforpeace@gmail.com \
    --cc=Ionela.Voinescu@imgtec.com \
    --cc=Kamil.Debski@imgtec.com \
    --cc=asierra@xes-inc.com \
    --cc=baruch@tkos.co.il \
    --cc=beanhuo@micron.com \
    --cc=boris.brezillon@free-electrons.com \
    --cc=bpqw@micron.com \
    --cc=dwmw2@infradead.org \
    --cc=ezequiel.garcia@free-electrons.com \
    --cc=frankliu@micron.com \
    --cc=fransklaver@gmail.com \
    --cc=kdasu.kdev@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=peterpandong@micron.com \
    --cc=rogerq@ti.com \
    --cc=wsa@the-dreams.de \
    --cc=zajec5@gmail.com \
    /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