public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Mathieu Poirier <mathieu.poirier@linaro.org>
Cc: Russell King - ARM Linux <linux@arm.linux.org.uk>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will.deacon@arm.com>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	peter.lachner@intel.com, norbert.schulz@intel.com,
	keven.boell@intel.com, yann.fouassier@intel.com,
	laurent.fert@intel.com, linux-api@vger.kernel.org,
	"linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>,
	Kaixu Xia <kaixu.xia@linaro.org>,
	Chunyan Zhang <zhang.chunyan@linaro.org>
Subject: Re: [PATCH] coresight: moving to new "hwtracing" directory
Date: Fri, 20 Mar 2015 08:17:57 +0100	[thread overview]
Message-ID: <20150320071757.GA30346@kroah.com> (raw)
In-Reply-To: <CANLsYkx07_xYcXYbj=TwvUpaDRo9=ppLqsg69e2ju2nO-MArwA@mail.gmail.com>

On Thu, Mar 19, 2015 at 06:21:56PM -0600, Mathieu Poirier wrote:
> On 19 March 2015 at 16:27, Greg KH <gregkh@linuxfoundation.org> wrote:
> > On Thu, Mar 19, 2015 at 04:02:02PM -0600, Mathieu Poirier wrote:
> >> Keeping drivers related to HW tracing on ARM, i.e coresight,
> >> under "drivers/coresight" doesn't make sense when other
> >> architectures start rolling out technologies of the same
> >> nature.
> >>
> >> As such creating a new "drivers/hwtracing" directory where all
> >> drivers of the same kind can reside, reducing namespace
> >> pollution under "drivers/".
> >>
> >> Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
> >> ---
> >>  MAINTAINERS                                        |    2 +-
> >>  arch/arm/Kconfig.debug                             |    2 +-
> >>  arch/arm64/Kconfig.debug                           |    2 +-
> >>  drivers/Makefile                                   |    2 +-
> >>  drivers/coresight/Kconfig                          |   61 -
> >>  drivers/coresight/Makefile                         |   11 -
> >>  drivers/coresight/coresight-etb10.c                |  527 ------
> >>  drivers/coresight/coresight-etm-cp14.c             |  591 ------
> >>  drivers/coresight/coresight-etm.h                  |  251 ---
> >>  drivers/coresight/coresight-etm3x.c                | 1932 --------------------
> >>  drivers/coresight/coresight-funnel.c               |  258 ---
> >>  drivers/coresight/coresight-priv.h                 |   63 -
> >>  drivers/coresight/coresight-replicator.c           |  137 --
> >>  drivers/coresight/coresight-tmc.c                  |  822 ---------
> >>  drivers/coresight/coresight-tpiu.c                 |  207 ---
> >>  drivers/coresight/coresight.c                      |  720 --------
> >>  drivers/coresight/of_coresight.c                   |  200 --
> >>  drivers/hwtracing/coresight/Kconfig                |   61 +
> >>  drivers/hwtracing/coresight/Makefile               |   11 +
> >>  drivers/hwtracing/coresight/coresight-etb10.c      |  527 ++++++
> >>  drivers/hwtracing/coresight/coresight-etm-cp14.c   |  591 ++++++
> >>  drivers/hwtracing/coresight/coresight-etm.h        |  251 +++
> >>  drivers/hwtracing/coresight/coresight-etm3x.c      | 1932 ++++++++++++++++++++
> >>  drivers/hwtracing/coresight/coresight-funnel.c     |  258 +++
> >>  drivers/hwtracing/coresight/coresight-priv.h       |   63 +
> >>  drivers/hwtracing/coresight/coresight-replicator.c |  137 ++
> >>  drivers/hwtracing/coresight/coresight-tmc.c        |  822 +++++++++
> >>  drivers/hwtracing/coresight/coresight-tpiu.c       |  207 +++
> >>  drivers/hwtracing/coresight/coresight.c            |  720 ++++++++
> >>  drivers/hwtracing/coresight/of_coresight.c         |  200 ++
> >>  30 files changed, 5784 insertions(+), 5784 deletions(-)
> >>  delete mode 100644 drivers/coresight/Kconfig
> >>  delete mode 100644 drivers/coresight/Makefile
> >>  delete mode 100644 drivers/coresight/coresight-etb10.c
> >>  delete mode 100644 drivers/coresight/coresight-etm-cp14.c
> >>  delete mode 100644 drivers/coresight/coresight-etm.h
> >>  delete mode 100644 drivers/coresight/coresight-etm3x.c
> >>  delete mode 100644 drivers/coresight/coresight-funnel.c
> >>  delete mode 100644 drivers/coresight/coresight-priv.h
> >>  delete mode 100644 drivers/coresight/coresight-replicator.c
> >>  delete mode 100644 drivers/coresight/coresight-tmc.c
> >>  delete mode 100644 drivers/coresight/coresight-tpiu.c
> >>  delete mode 100644 drivers/coresight/coresight.c
> >>  delete mode 100644 drivers/coresight/of_coresight.c
> >>  create mode 100644 drivers/hwtracing/coresight/Kconfig
> >>  create mode 100644 drivers/hwtracing/coresight/Makefile
> >>  create mode 100644 drivers/hwtracing/coresight/coresight-etb10.c
> >>  create mode 100644 drivers/hwtracing/coresight/coresight-etm-cp14.c
> >>  create mode 100644 drivers/hwtracing/coresight/coresight-etm.h
> >>  create mode 100644 drivers/hwtracing/coresight/coresight-etm3x.c
> >>  create mode 100644 drivers/hwtracing/coresight/coresight-funnel.c
> >>  create mode 100644 drivers/hwtracing/coresight/coresight-priv.h
> >>  create mode 100644 drivers/hwtracing/coresight/coresight-replicator.c
> >>  create mode 100644 drivers/hwtracing/coresight/coresight-tmc.c
> >>  create mode 100644 drivers/hwtracing/coresight/coresight-tpiu.c
> >>  create mode 100644 drivers/hwtracing/coresight/coresight.c
> >>  create mode 100644 drivers/hwtracing/coresight/of_coresight.c
> >
> > This looks good to me, but please create your patches with -M option to
> > git, so it just moves the code, and we can easily see that it is a move
> > and nothing else changed.
> >
> 
> Right, it's nothing more than a move - would you like me to resend this?

Yes please, I can't apply it as-is :)

      reply	other threads:[~2015-03-20  7:18 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-19 22:02 [PATCH] coresight: moving to new "hwtracing" directory Mathieu Poirier
2015-03-19 22:27 ` Greg KH
2015-03-20  0:21   ` Mathieu Poirier
2015-03-20  7:17     ` Greg KH [this message]

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=20150320071757.GA30346@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=catalin.marinas@arm.com \
    --cc=kaixu.xia@linaro.org \
    --cc=keven.boell@intel.com \
    --cc=laurent.fert@intel.com \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=mathieu.poirier@linaro.org \
    --cc=norbert.schulz@intel.com \
    --cc=peter.lachner@intel.com \
    --cc=will.deacon@arm.com \
    --cc=yann.fouassier@intel.com \
    --cc=zhang.chunyan@linaro.org \
    /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