All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Mathieu Poirier <mathieu.poirier@linaro.org>
Cc: "linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Chunyan Zhang <zhang.chunyan@linaro.org>,
	Kaixu Xia <kaixu.xia@linaro.org>
Subject: Re: [PATCH 0/5] coresight: next
Date: Thu, 19 Mar 2015 23:24:28 +0100	[thread overview]
Message-ID: <20150319222428.GA24917@kroah.com> (raw)
In-Reply-To: <CANLsYkz=f_DyQq9jkk3CmHzqUCQABO1cSwRzwCbwh5U34b96yg@mail.gmail.com>

On Thu, Mar 19, 2015 at 04:09:34PM -0600, Mathieu Poirier wrote:
> On 27 February 2015 at 16:04, Mathieu Poirier
> <mathieu.poirier@linaro.org> wrote:
> > These are the latest coresight patches that I'd like you to consider for
> > inclusion in your tree.  The set is based on v4.0-rc1.
> >
> > Thanks,
> > Mathieu
> >
> > Mathieu Poirier (4):
> >   coresight: making cpu index lookup arm64 compliant
> >   coresight: fixing compilation warnings picked up by 64bit compiler
> >   coresight: Adding coresight support for arm64 architecture
> >   coresight-stm: Bindings for System Trace Macrocell
> >
> > Pratik Patel (1):
> >   coresight-stm: adding driver for CoreSight STM component
> >
> >  .../ABI/testing/sysfs-bus-coresight-devices-stm    |   62 ++
> >  .../devicetree/bindings/arm/coresight.txt          |   28 +
> >  Documentation/trace/coresight.txt                  |   88 +-
> >  arch/arm/Kconfig.debug                             |   55 +-
> >  arch/arm64/Kconfig.debug                           |    2 +
> >  drivers/coresight/Kconfig                          |   71 ++
> >  drivers/coresight/Makefile                         |    1 +
> >  drivers/coresight/coresight-etb10.c                |    4 +-
> >  drivers/coresight/coresight-stm.c                  | 1070 ++++++++++++++++++++
> >  drivers/coresight/coresight-tmc.c                  |    4 +-
> >  drivers/coresight/of_coresight.c                   |   18 +-
> >  include/linux/coresight-stm.h                      |   40 +
> >  include/uapi/linux/coresight-stm.h                 |   23 +
> >  13 files changed, 1394 insertions(+), 72 deletions(-)
> >  create mode 100644 Documentation/ABI/testing/sysfs-bus-coresight-devices-stm
> >  create mode 100644 drivers/coresight/Kconfig
> >  create mode 100644 drivers/coresight/coresight-stm.c
> >  create mode 100644 include/linux/coresight-stm.h
> >  create mode 100644 include/uapi/linux/coresight-stm.h
> >
> > --
> > 1.9.1
> >
> 
> Greg,
> 
> I haven't received the usual notifications telling me that you have
> added these patches to your tree.  As such I would ask you to
> disregard this submission entirely as fair amount of things have
> changed since the time it was sent out.  I will send you another set
> that has the latest and accurate modifications.
> 
> I can also send you a patchset that applies on top of this one and
> that brings everything up to date - whichever is the easiest for you.

I'll drop these from my tree and wait for you to send new ones.

Sorry for missing these so far, my patch queue is still huge :(

greg k-h

WARNING: multiple messages have this Message-ID (diff)
From: gregkh@linuxfoundation.org (Greg KH)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/5] coresight: next
Date: Thu, 19 Mar 2015 23:24:28 +0100	[thread overview]
Message-ID: <20150319222428.GA24917@kroah.com> (raw)
In-Reply-To: <CANLsYkz=f_DyQq9jkk3CmHzqUCQABO1cSwRzwCbwh5U34b96yg@mail.gmail.com>

On Thu, Mar 19, 2015 at 04:09:34PM -0600, Mathieu Poirier wrote:
> On 27 February 2015 at 16:04, Mathieu Poirier
> <mathieu.poirier@linaro.org> wrote:
> > These are the latest coresight patches that I'd like you to consider for
> > inclusion in your tree.  The set is based on v4.0-rc1.
> >
> > Thanks,
> > Mathieu
> >
> > Mathieu Poirier (4):
> >   coresight: making cpu index lookup arm64 compliant
> >   coresight: fixing compilation warnings picked up by 64bit compiler
> >   coresight: Adding coresight support for arm64 architecture
> >   coresight-stm: Bindings for System Trace Macrocell
> >
> > Pratik Patel (1):
> >   coresight-stm: adding driver for CoreSight STM component
> >
> >  .../ABI/testing/sysfs-bus-coresight-devices-stm    |   62 ++
> >  .../devicetree/bindings/arm/coresight.txt          |   28 +
> >  Documentation/trace/coresight.txt                  |   88 +-
> >  arch/arm/Kconfig.debug                             |   55 +-
> >  arch/arm64/Kconfig.debug                           |    2 +
> >  drivers/coresight/Kconfig                          |   71 ++
> >  drivers/coresight/Makefile                         |    1 +
> >  drivers/coresight/coresight-etb10.c                |    4 +-
> >  drivers/coresight/coresight-stm.c                  | 1070 ++++++++++++++++++++
> >  drivers/coresight/coresight-tmc.c                  |    4 +-
> >  drivers/coresight/of_coresight.c                   |   18 +-
> >  include/linux/coresight-stm.h                      |   40 +
> >  include/uapi/linux/coresight-stm.h                 |   23 +
> >  13 files changed, 1394 insertions(+), 72 deletions(-)
> >  create mode 100644 Documentation/ABI/testing/sysfs-bus-coresight-devices-stm
> >  create mode 100644 drivers/coresight/Kconfig
> >  create mode 100644 drivers/coresight/coresight-stm.c
> >  create mode 100644 include/linux/coresight-stm.h
> >  create mode 100644 include/uapi/linux/coresight-stm.h
> >
> > --
> > 1.9.1
> >
> 
> Greg,
> 
> I haven't received the usual notifications telling me that you have
> added these patches to your tree.  As such I would ask you to
> disregard this submission entirely as fair amount of things have
> changed since the time it was sent out.  I will send you another set
> that has the latest and accurate modifications.
> 
> I can also send you a patchset that applies on top of this one and
> that brings everything up to date - whichever is the easiest for you.

I'll drop these from my tree and wait for you to send new ones.

Sorry for missing these so far, my patch queue is still huge :(

greg k-h

  reply	other threads:[~2015-03-19 22:24 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-27 23:04 [PATCH 0/5] coresight: next Mathieu Poirier
2015-02-27 23:04 ` Mathieu Poirier
2015-02-27 23:04 ` [PATCH 1/5] coresight: making cpu index lookup arm64 compliant Mathieu Poirier
2015-02-27 23:04   ` Mathieu Poirier
2015-02-27 23:04 ` [PATCH 2/5] coresight: fixing compilation warnings picked up by 64bit compiler Mathieu Poirier
2015-02-27 23:04   ` Mathieu Poirier
2015-02-27 23:04 ` [PATCH 3/5] coresight: Adding coresight support for arm64 architecture Mathieu Poirier
2015-02-27 23:04   ` Mathieu Poirier
2015-02-27 23:04 ` [PATCH 4/5] coresight-stm: adding driver for CoreSight STM component Mathieu Poirier
2015-02-27 23:04   ` Mathieu Poirier
2015-03-07 12:27   ` Alexander Shishkin
2015-03-07 12:27     ` Alexander Shishkin
2015-03-30 14:04   ` Alexander Shishkin
2015-03-30 14:04     ` Alexander Shishkin
2015-03-30 15:48     ` Mathieu Poirier
2015-03-30 15:48       ` Mathieu Poirier
2015-03-31 15:04       ` Alexander Shishkin
2015-03-31 15:04         ` Alexander Shishkin
2015-04-01 14:27         ` Mathieu Poirier
2015-04-01 14:27           ` Mathieu Poirier
2015-04-01 14:28           ` Mathieu Poirier
2015-04-01 14:28             ` Mathieu Poirier
2015-02-27 23:04 ` [PATCH 5/5] coresight-stm: Bindings for System Trace Macrocell Mathieu Poirier
2015-02-27 23:04   ` Mathieu Poirier
2015-03-19 22:09 ` [PATCH 0/5] coresight: next Mathieu Poirier
2015-03-19 22:09   ` Mathieu Poirier
2015-03-19 22:24   ` Greg KH [this message]
2015-03-19 22:24     ` Greg KH

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=20150319222428.GA24917@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=kaixu.xia@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mathieu.poirier@linaro.org \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.