All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL v2] Coresight changes for v5.16
@ 2021-10-26 19:55 ` Mathieu Poirier
  0 siblings, 0 replies; 10+ messages in thread
From: Mathieu Poirier @ 2021-10-26 19:55 UTC (permalink / raw)
  To: gregkh; +Cc: coresight, linux-arm-kernel, linux-kernel

The following changes since commit 5816b3e6577eaa676ceb00a848f0fd65fe2adc29:

  Linux 5.15-rc3 (2021-09-26 14:08:19 -0700)

are available in the Git repository at:

  git@gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux.git tags/coresight-next-v5.16

for you to fetch changes up to 7cf0754113f7ed6fad999483e40d95985c987353:

  arm64: errata: Enable TRBE workaround for write to out-of-range address (2021-10-25 12:06:02 -0600)

----------------------------------------------------------------

Coresight changes for v5.16

- A new option to make coresight cpu-debug capabilities available as early
as possible in the kernel boot process.

- Make trace sessions more enduring by coping with scenarios where events
are scheduled on CPUs that can't reach the selected sink.

- A set of improvement to make the TMC-ETR driver more efficient.

- Enhancements to the TRBE driver to correct several errata.

- An enhancement to make the AXI burts size configurable for TMC devices
that can't work with the default value.

- A fix in the CTI module to use the correct device when calling
pm_runtime_put()

- The addition of the Kryo-5xx device to the list of support ETMs.

Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>

----------------------------------------------------------------
Brian Norris (1):
      coresight: cpu-debug: Control default behavior via Kconfig

James Clark (1):
      coresight: Don't immediately close events that are run on invalid CPU/sink combos

Leo Yan (5):
      coresight: tmc-etr: Add barrier after updating AUX ring buffer
      coresight: tmc-etf: Add comment for store ordering
      coresight: tmc-etr: Use perf_output_handle::head for AUX ring buffer
      coresight: Update comments for removing cs_etm_find_snapshot()
      coresight: tmc-etr: Speed up for bounce buffer in flat mode

Suzuki K Poulose (28):
      arm64: Add Neoverse-N2, Cortex-A710 CPU part definition
      arm64: errata: Add detection for TRBE overwrite in FILL mode
      arm64: errata: Add workaround for TSB flush failures
      arm64: errata: Add detection for TRBE write to out-of-range
      coresight: etm4x: Save restore TRFCR_EL1
      coresight: etm4x: Use Trace Filtering controls dynamically
      coresight: etm-pmu: Ensure the AUX handle is valid
      coresight: trbe: Ensure the format flag is always set
      coresight: trbe: Drop duplicate TRUNCATE flags
      coresight: trbe: Unify the enabling sequence
      coresight: trbe: irq handler: Do not disable TRBE if no action is needed
      coresight: trbe: Fix handling of spurious interrupts
      coresight: trbe: Do not truncate buffer on IRQ
      coresight: trbe: End the AUX handle on truncation
      coresight: trbe: Prohibit trace before disabling TRBE
      coresight: trbe: Fix incorrect access of the sink specific data
      coresight: trbe: Defer the probe on offline CPUs
      coresight: trbe: Add a helper to calculate the trace generated
      coresight: trbe: Add a helper to pad a given buffer area
      coresight: trbe: Decouple buffer base from the hardware base
      coresight: trbe: Allow driver to choose a different alignment
      coresight: trbe: Add infrastructure for Errata handling
      coresight: trbe: Workaround TRBE errata overwrite in FILL mode
      coresight: trbe: Add a helper to determine the minimum buffer size
      coresight: trbe: Make sure we have enough space
      coresight: trbe: Work around write to out of range
      arm64: errata: Enable workaround for TRBE overwrite in FILL mode
      arm64: errata: Enable TRBE workaround for write to out-of-range address

Tanmay Jagdale (2):
      dt-bindings: coresight: Add burst size for TMC
      coresight: tmc: Configure AXI write burst size

Tao Zhang (2):
      coresight: cti: Correct the parameter for pm_runtime_put
      coresight: etm4x: Add ETM PID for Kryo-5XX

 Documentation/arm64/silicon-errata.rst             |  12 +
 .../devicetree/bindings/arm/coresight.txt          |   5 +
 arch/arm64/Kconfig                                 | 111 +++++
 arch/arm64/include/asm/barrier.h                   |  16 +-
 arch/arm64/include/asm/cputype.h                   |   4 +
 arch/arm64/kernel/cpu_errata.c                     |  64 +++
 arch/arm64/tools/cpucaps                           |   3 +
 drivers/hwtracing/coresight/Kconfig                |  13 +
 drivers/hwtracing/coresight/coresight-cpu-debug.c  |   2 +-
 drivers/hwtracing/coresight/coresight-cti-core.c   |   2 +-
 drivers/hwtracing/coresight/coresight-etb10.c      |   5 +-
 drivers/hwtracing/coresight/coresight-etm-perf.c   |  56 ++-
 drivers/hwtracing/coresight/coresight-etm4x-core.c | 101 +++-
 drivers/hwtracing/coresight/coresight-etm4x.h      |   9 +-
 .../coresight/coresight-self-hosted-trace.h        |  33 ++
 drivers/hwtracing/coresight/coresight-tmc-core.c   |  21 +-
 drivers/hwtracing/coresight/coresight-tmc-etf.c    |  10 +-
 drivers/hwtracing/coresight/coresight-tmc-etr.c    |  52 +-
 drivers/hwtracing/coresight/coresight-tmc.h        |   6 +-
 drivers/hwtracing/coresight/coresight-trbe.c       | 534 +++++++++++++++++----
 20 files changed, 905 insertions(+), 154 deletions(-)
 create mode 100644 drivers/hwtracing/coresight/coresight-self-hosted-trace.h

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

* [GIT PULL v2] Coresight changes for v5.16
@ 2021-10-26 19:55 ` Mathieu Poirier
  0 siblings, 0 replies; 10+ messages in thread
From: Mathieu Poirier @ 2021-10-26 19:55 UTC (permalink / raw)
  To: gregkh; +Cc: coresight, linux-arm-kernel, linux-kernel

The following changes since commit 5816b3e6577eaa676ceb00a848f0fd65fe2adc29:

  Linux 5.15-rc3 (2021-09-26 14:08:19 -0700)

are available in the Git repository at:

  git@gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux.git tags/coresight-next-v5.16

for you to fetch changes up to 7cf0754113f7ed6fad999483e40d95985c987353:

  arm64: errata: Enable TRBE workaround for write to out-of-range address (2021-10-25 12:06:02 -0600)

----------------------------------------------------------------

Coresight changes for v5.16

- A new option to make coresight cpu-debug capabilities available as early
as possible in the kernel boot process.

- Make trace sessions more enduring by coping with scenarios where events
are scheduled on CPUs that can't reach the selected sink.

- A set of improvement to make the TMC-ETR driver more efficient.

- Enhancements to the TRBE driver to correct several errata.

- An enhancement to make the AXI burts size configurable for TMC devices
that can't work with the default value.

- A fix in the CTI module to use the correct device when calling
pm_runtime_put()

- The addition of the Kryo-5xx device to the list of support ETMs.

Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>

----------------------------------------------------------------
Brian Norris (1):
      coresight: cpu-debug: Control default behavior via Kconfig

James Clark (1):
      coresight: Don't immediately close events that are run on invalid CPU/sink combos

Leo Yan (5):
      coresight: tmc-etr: Add barrier after updating AUX ring buffer
      coresight: tmc-etf: Add comment for store ordering
      coresight: tmc-etr: Use perf_output_handle::head for AUX ring buffer
      coresight: Update comments for removing cs_etm_find_snapshot()
      coresight: tmc-etr: Speed up for bounce buffer in flat mode

Suzuki K Poulose (28):
      arm64: Add Neoverse-N2, Cortex-A710 CPU part definition
      arm64: errata: Add detection for TRBE overwrite in FILL mode
      arm64: errata: Add workaround for TSB flush failures
      arm64: errata: Add detection for TRBE write to out-of-range
      coresight: etm4x: Save restore TRFCR_EL1
      coresight: etm4x: Use Trace Filtering controls dynamically
      coresight: etm-pmu: Ensure the AUX handle is valid
      coresight: trbe: Ensure the format flag is always set
      coresight: trbe: Drop duplicate TRUNCATE flags
      coresight: trbe: Unify the enabling sequence
      coresight: trbe: irq handler: Do not disable TRBE if no action is needed
      coresight: trbe: Fix handling of spurious interrupts
      coresight: trbe: Do not truncate buffer on IRQ
      coresight: trbe: End the AUX handle on truncation
      coresight: trbe: Prohibit trace before disabling TRBE
      coresight: trbe: Fix incorrect access of the sink specific data
      coresight: trbe: Defer the probe on offline CPUs
      coresight: trbe: Add a helper to calculate the trace generated
      coresight: trbe: Add a helper to pad a given buffer area
      coresight: trbe: Decouple buffer base from the hardware base
      coresight: trbe: Allow driver to choose a different alignment
      coresight: trbe: Add infrastructure for Errata handling
      coresight: trbe: Workaround TRBE errata overwrite in FILL mode
      coresight: trbe: Add a helper to determine the minimum buffer size
      coresight: trbe: Make sure we have enough space
      coresight: trbe: Work around write to out of range
      arm64: errata: Enable workaround for TRBE overwrite in FILL mode
      arm64: errata: Enable TRBE workaround for write to out-of-range address

Tanmay Jagdale (2):
      dt-bindings: coresight: Add burst size for TMC
      coresight: tmc: Configure AXI write burst size

Tao Zhang (2):
      coresight: cti: Correct the parameter for pm_runtime_put
      coresight: etm4x: Add ETM PID for Kryo-5XX

 Documentation/arm64/silicon-errata.rst             |  12 +
 .../devicetree/bindings/arm/coresight.txt          |   5 +
 arch/arm64/Kconfig                                 | 111 +++++
 arch/arm64/include/asm/barrier.h                   |  16 +-
 arch/arm64/include/asm/cputype.h                   |   4 +
 arch/arm64/kernel/cpu_errata.c                     |  64 +++
 arch/arm64/tools/cpucaps                           |   3 +
 drivers/hwtracing/coresight/Kconfig                |  13 +
 drivers/hwtracing/coresight/coresight-cpu-debug.c  |   2 +-
 drivers/hwtracing/coresight/coresight-cti-core.c   |   2 +-
 drivers/hwtracing/coresight/coresight-etb10.c      |   5 +-
 drivers/hwtracing/coresight/coresight-etm-perf.c   |  56 ++-
 drivers/hwtracing/coresight/coresight-etm4x-core.c | 101 +++-
 drivers/hwtracing/coresight/coresight-etm4x.h      |   9 +-
 .../coresight/coresight-self-hosted-trace.h        |  33 ++
 drivers/hwtracing/coresight/coresight-tmc-core.c   |  21 +-
 drivers/hwtracing/coresight/coresight-tmc-etf.c    |  10 +-
 drivers/hwtracing/coresight/coresight-tmc-etr.c    |  52 +-
 drivers/hwtracing/coresight/coresight-tmc.h        |   6 +-
 drivers/hwtracing/coresight/coresight-trbe.c       | 534 +++++++++++++++++----
 20 files changed, 905 insertions(+), 154 deletions(-)
 create mode 100644 drivers/hwtracing/coresight/coresight-self-hosted-trace.h

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL v2] Coresight changes for v5.16
  2021-10-26 19:55 ` Mathieu Poirier
@ 2021-10-27  6:50   ` Greg KH
  -1 siblings, 0 replies; 10+ messages in thread
From: Greg KH @ 2021-10-27  6:50 UTC (permalink / raw)
  To: Mathieu Poirier; +Cc: coresight, linux-arm-kernel, linux-kernel

On Tue, Oct 26, 2021 at 01:55:45PM -0600, Mathieu Poirier wrote:
> The following changes since commit 5816b3e6577eaa676ceb00a848f0fd65fe2adc29:
> 
>   Linux 5.15-rc3 (2021-09-26 14:08:19 -0700)
> 
> are available in the Git repository at:
> 
>   git@gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux.git tags/coresight-next-v5.16

Better but I get the following errors when my scripts try to merge them.
Note, the linux-next scripts will give you the same complaint, so this
isn't a new thing:

Commit 6871138a7ab9 ("coresight: etm4x: Add ETM PID for Kryo-5XX")
	committer Signed-off-by missing
	author email:    quic_taozha@quicinc.com
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: Tao Zhang <quic_taozha@quicinc.com>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Commit 202d403ae3a9 ("coresight: Don't immediately close events that are run on invalid CPU/sink combos")
	committer Signed-off-by missing
	author email:    james.clark@arm.com
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: James Clark <james.clark@arm.com>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Commit ef095e61dc8f ("coresight: Update comments for removing cs_etm_find_snapshot()")
	committer Signed-off-by missing
	author email:    leo.yan@linaro.org
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: Leo Yan <leo.yan@linaro.org>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Commit 7be15eef996f ("coresight: tmc-etr: Use perf_output_handle::head for AUX ring buffer")
	committer Signed-off-by missing
	author email:    leo.yan@linaro.org
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: Leo Yan <leo.yan@linaro.org>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Commit 60067d5ab339 ("coresight: tmc-etf: Add comment for store ordering")
	committer Signed-off-by missing
	author email:    leo.yan@linaro.org
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: Leo Yan <leo.yan@linaro.org>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Commit 7c202525ff8c ("coresight: tmc-etr: Add barrier after updating AUX ring buffer")
	committer Signed-off-by missing
	author email:    leo.yan@linaro.org
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: Leo Yan <leo.yan@linaro.org>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Errors in tree with Signed-off-by, please fix!


Is there some reason you are committing changes to your tree and not signing
off on them?  That's not really a good idea :(

thanks,

greg k-h

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

* Re: [GIT PULL v2] Coresight changes for v5.16
@ 2021-10-27  6:50   ` Greg KH
  0 siblings, 0 replies; 10+ messages in thread
From: Greg KH @ 2021-10-27  6:50 UTC (permalink / raw)
  To: Mathieu Poirier; +Cc: coresight, linux-arm-kernel, linux-kernel

On Tue, Oct 26, 2021 at 01:55:45PM -0600, Mathieu Poirier wrote:
> The following changes since commit 5816b3e6577eaa676ceb00a848f0fd65fe2adc29:
> 
>   Linux 5.15-rc3 (2021-09-26 14:08:19 -0700)
> 
> are available in the Git repository at:
> 
>   git@gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux.git tags/coresight-next-v5.16

Better but I get the following errors when my scripts try to merge them.
Note, the linux-next scripts will give you the same complaint, so this
isn't a new thing:

Commit 6871138a7ab9 ("coresight: etm4x: Add ETM PID for Kryo-5XX")
	committer Signed-off-by missing
	author email:    quic_taozha@quicinc.com
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: Tao Zhang <quic_taozha@quicinc.com>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Commit 202d403ae3a9 ("coresight: Don't immediately close events that are run on invalid CPU/sink combos")
	committer Signed-off-by missing
	author email:    james.clark@arm.com
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: James Clark <james.clark@arm.com>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Commit ef095e61dc8f ("coresight: Update comments for removing cs_etm_find_snapshot()")
	committer Signed-off-by missing
	author email:    leo.yan@linaro.org
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: Leo Yan <leo.yan@linaro.org>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Commit 7be15eef996f ("coresight: tmc-etr: Use perf_output_handle::head for AUX ring buffer")
	committer Signed-off-by missing
	author email:    leo.yan@linaro.org
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: Leo Yan <leo.yan@linaro.org>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Commit 60067d5ab339 ("coresight: tmc-etf: Add comment for store ordering")
	committer Signed-off-by missing
	author email:    leo.yan@linaro.org
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: Leo Yan <leo.yan@linaro.org>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Commit 7c202525ff8c ("coresight: tmc-etr: Add barrier after updating AUX ring buffer")
	committer Signed-off-by missing
	author email:    leo.yan@linaro.org
	committer email: mathieu.poirier@linaro.org
	Signed-off-by: Leo Yan <leo.yan@linaro.org>
	Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Errors in tree with Signed-off-by, please fix!


Is there some reason you are committing changes to your tree and not signing
off on them?  That's not really a good idea :(

thanks,

greg k-h

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL v2] Coresight changes for v5.16
  2021-10-27  6:50   ` Greg KH
@ 2021-10-27 17:32     ` Mathieu Poirier
  -1 siblings, 0 replies; 10+ messages in thread
From: Mathieu Poirier @ 2021-10-27 17:32 UTC (permalink / raw)
  To: Greg KH; +Cc: Coresight ML, linux-arm-kernel, Linux Kernel Mailing List

On Wed, 27 Oct 2021 at 00:50, Greg KH <gregkh@linuxfoundation.org> wrote:
>
> On Tue, Oct 26, 2021 at 01:55:45PM -0600, Mathieu Poirier wrote:
> > The following changes since commit 5816b3e6577eaa676ceb00a848f0fd65fe2adc29:
> >
> >   Linux 5.15-rc3 (2021-09-26 14:08:19 -0700)
> >
> > are available in the Git repository at:
> >
> >   git@gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux.git tags/coresight-next-v5.16
>
> Better but I get the following errors when my scripts try to merge them.
> Note, the linux-next scripts will give you the same complaint, so this
> isn't a new thing:

Can you point me to the linux-next script you are referring to above?
Usually when that happens I get an email but this time I didn't get
anything.

>
> Commit 6871138a7ab9 ("coresight: etm4x: Add ETM PID for Kryo-5XX")
>         committer Signed-off-by missing
>         author email:    quic_taozha@quicinc.com
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: Tao Zhang <quic_taozha@quicinc.com>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Commit 202d403ae3a9 ("coresight: Don't immediately close events that are run on invalid CPU/sink combos")
>         committer Signed-off-by missing
>         author email:    james.clark@arm.com
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: James Clark <james.clark@arm.com>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Commit ef095e61dc8f ("coresight: Update comments for removing cs_etm_find_snapshot()")
>         committer Signed-off-by missing
>         author email:    leo.yan@linaro.org
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: Leo Yan <leo.yan@linaro.org>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Commit 7be15eef996f ("coresight: tmc-etr: Use perf_output_handle::head for AUX ring buffer")
>         committer Signed-off-by missing
>         author email:    leo.yan@linaro.org
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: Leo Yan <leo.yan@linaro.org>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Commit 60067d5ab339 ("coresight: tmc-etf: Add comment for store ordering")
>         committer Signed-off-by missing
>         author email:    leo.yan@linaro.org
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: Leo Yan <leo.yan@linaro.org>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Commit 7c202525ff8c ("coresight: tmc-etr: Add barrier after updating AUX ring buffer")
>         committer Signed-off-by missing
>         author email:    leo.yan@linaro.org
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: Leo Yan <leo.yan@linaro.org>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Errors in tree with Signed-off-by, please fix!
>
>
> Is there some reason you are committing changes to your tree and not signing
> off on them?  That's not really a good idea :(
>

Not sure why sarcasm is required here - simply pointing out the
problem would have been sufficient.

These patches were committed by Suzuki who co-maintains the subsystem
with me.  The committer information likely got transferred when I
cherry-picked the patches when putting the pull request together.

> thanks,
>
> greg k-h

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

* Re: [GIT PULL v2] Coresight changes for v5.16
@ 2021-10-27 17:32     ` Mathieu Poirier
  0 siblings, 0 replies; 10+ messages in thread
From: Mathieu Poirier @ 2021-10-27 17:32 UTC (permalink / raw)
  To: Greg KH; +Cc: Coresight ML, linux-arm-kernel, Linux Kernel Mailing List

On Wed, 27 Oct 2021 at 00:50, Greg KH <gregkh@linuxfoundation.org> wrote:
>
> On Tue, Oct 26, 2021 at 01:55:45PM -0600, Mathieu Poirier wrote:
> > The following changes since commit 5816b3e6577eaa676ceb00a848f0fd65fe2adc29:
> >
> >   Linux 5.15-rc3 (2021-09-26 14:08:19 -0700)
> >
> > are available in the Git repository at:
> >
> >   git@gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux.git tags/coresight-next-v5.16
>
> Better but I get the following errors when my scripts try to merge them.
> Note, the linux-next scripts will give you the same complaint, so this
> isn't a new thing:

Can you point me to the linux-next script you are referring to above?
Usually when that happens I get an email but this time I didn't get
anything.

>
> Commit 6871138a7ab9 ("coresight: etm4x: Add ETM PID for Kryo-5XX")
>         committer Signed-off-by missing
>         author email:    quic_taozha@quicinc.com
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: Tao Zhang <quic_taozha@quicinc.com>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Commit 202d403ae3a9 ("coresight: Don't immediately close events that are run on invalid CPU/sink combos")
>         committer Signed-off-by missing
>         author email:    james.clark@arm.com
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: James Clark <james.clark@arm.com>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Commit ef095e61dc8f ("coresight: Update comments for removing cs_etm_find_snapshot()")
>         committer Signed-off-by missing
>         author email:    leo.yan@linaro.org
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: Leo Yan <leo.yan@linaro.org>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Commit 7be15eef996f ("coresight: tmc-etr: Use perf_output_handle::head for AUX ring buffer")
>         committer Signed-off-by missing
>         author email:    leo.yan@linaro.org
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: Leo Yan <leo.yan@linaro.org>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Commit 60067d5ab339 ("coresight: tmc-etf: Add comment for store ordering")
>         committer Signed-off-by missing
>         author email:    leo.yan@linaro.org
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: Leo Yan <leo.yan@linaro.org>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Commit 7c202525ff8c ("coresight: tmc-etr: Add barrier after updating AUX ring buffer")
>         committer Signed-off-by missing
>         author email:    leo.yan@linaro.org
>         committer email: mathieu.poirier@linaro.org
>         Signed-off-by: Leo Yan <leo.yan@linaro.org>
>         Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
>
> Errors in tree with Signed-off-by, please fix!
>
>
> Is there some reason you are committing changes to your tree and not signing
> off on them?  That's not really a good idea :(
>

Not sure why sarcasm is required here - simply pointing out the
problem would have been sufficient.

These patches were committed by Suzuki who co-maintains the subsystem
with me.  The committer information likely got transferred when I
cherry-picked the patches when putting the pull request together.

> thanks,
>
> greg k-h

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL v2] Coresight changes for v5.16
  2021-10-27 17:32     ` Mathieu Poirier
@ 2021-10-27 17:41       ` Greg KH
  -1 siblings, 0 replies; 10+ messages in thread
From: Greg KH @ 2021-10-27 17:41 UTC (permalink / raw)
  To: Mathieu Poirier; +Cc: Coresight ML, linux-arm-kernel, Linux Kernel Mailing List

On Wed, Oct 27, 2021 at 11:32:43AM -0600, Mathieu Poirier wrote:
> On Wed, 27 Oct 2021 at 00:50, Greg KH <gregkh@linuxfoundation.org> wrote:
> >
> > On Tue, Oct 26, 2021 at 01:55:45PM -0600, Mathieu Poirier wrote:
> > > The following changes since commit 5816b3e6577eaa676ceb00a848f0fd65fe2adc29:
> > >
> > >   Linux 5.15-rc3 (2021-09-26 14:08:19 -0700)
> > >
> > > are available in the Git repository at:
> > >
> > >   git@gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux.git tags/coresight-next-v5.16
> >
> > Better but I get the following errors when my scripts try to merge them.
> > Note, the linux-next scripts will give you the same complaint, so this
> > isn't a new thing:
> 
> Can you point me to the linux-next script you are referring to above?
> Usually when that happens I get an email but this time I didn't get
> anything.

Is this tree/branch in linux-next now?  If so, you should have gotten an
email.

My scripts were sent to the workflow mailing list a year or so ago, I
can dig them up if needed.

thanks,

greg k-h

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

* Re: [GIT PULL v2] Coresight changes for v5.16
@ 2021-10-27 17:41       ` Greg KH
  0 siblings, 0 replies; 10+ messages in thread
From: Greg KH @ 2021-10-27 17:41 UTC (permalink / raw)
  To: Mathieu Poirier; +Cc: Coresight ML, linux-arm-kernel, Linux Kernel Mailing List

On Wed, Oct 27, 2021 at 11:32:43AM -0600, Mathieu Poirier wrote:
> On Wed, 27 Oct 2021 at 00:50, Greg KH <gregkh@linuxfoundation.org> wrote:
> >
> > On Tue, Oct 26, 2021 at 01:55:45PM -0600, Mathieu Poirier wrote:
> > > The following changes since commit 5816b3e6577eaa676ceb00a848f0fd65fe2adc29:
> > >
> > >   Linux 5.15-rc3 (2021-09-26 14:08:19 -0700)
> > >
> > > are available in the Git repository at:
> > >
> > >   git@gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux.git tags/coresight-next-v5.16
> >
> > Better but I get the following errors when my scripts try to merge them.
> > Note, the linux-next scripts will give you the same complaint, so this
> > isn't a new thing:
> 
> Can you point me to the linux-next script you are referring to above?
> Usually when that happens I get an email but this time I didn't get
> anything.

Is this tree/branch in linux-next now?  If so, you should have gotten an
email.

My scripts were sent to the workflow mailing list a year or so ago, I
can dig them up if needed.

thanks,

greg k-h

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL v2] Coresight changes for v5.16
  2021-10-27 17:41       ` Greg KH
@ 2021-10-27 18:01         ` Mathieu Poirier
  -1 siblings, 0 replies; 10+ messages in thread
From: Mathieu Poirier @ 2021-10-27 18:01 UTC (permalink / raw)
  To: Greg KH; +Cc: Coresight ML, linux-arm-kernel, Linux Kernel Mailing List

On Wed, 27 Oct 2021 at 11:41, Greg KH <gregkh@linuxfoundation.org> wrote:
>
> On Wed, Oct 27, 2021 at 11:32:43AM -0600, Mathieu Poirier wrote:
> > On Wed, 27 Oct 2021 at 00:50, Greg KH <gregkh@linuxfoundation.org> wrote:
> > >
> > > On Tue, Oct 26, 2021 at 01:55:45PM -0600, Mathieu Poirier wrote:
> > > > The following changes since commit 5816b3e6577eaa676ceb00a848f0fd65fe2adc29:
> > > >
> > > >   Linux 5.15-rc3 (2021-09-26 14:08:19 -0700)
> > > >
> > > > are available in the Git repository at:
> > > >
> > > >   git@gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux.git tags/coresight-next-v5.16
> > >
> > > Better but I get the following errors when my scripts try to merge them.
> > > Note, the linux-next scripts will give you the same complaint, so this
> > > isn't a new thing:
> >
> > Can you point me to the linux-next script you are referring to above?
> > Usually when that happens I get an email but this time I didn't get
> > anything.
>
> Is this tree/branch in linux-next now?  If so, you should have gotten an
> email.

Definitely: https://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git/log/?h=next

>
> My scripts were sent to the workflow mailing list a year or so ago, I
> can dig them up if needed.
>

Thanks - I'll look it up.

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

* Re: [GIT PULL v2] Coresight changes for v5.16
@ 2021-10-27 18:01         ` Mathieu Poirier
  0 siblings, 0 replies; 10+ messages in thread
From: Mathieu Poirier @ 2021-10-27 18:01 UTC (permalink / raw)
  To: Greg KH; +Cc: Coresight ML, linux-arm-kernel, Linux Kernel Mailing List

On Wed, 27 Oct 2021 at 11:41, Greg KH <gregkh@linuxfoundation.org> wrote:
>
> On Wed, Oct 27, 2021 at 11:32:43AM -0600, Mathieu Poirier wrote:
> > On Wed, 27 Oct 2021 at 00:50, Greg KH <gregkh@linuxfoundation.org> wrote:
> > >
> > > On Tue, Oct 26, 2021 at 01:55:45PM -0600, Mathieu Poirier wrote:
> > > > The following changes since commit 5816b3e6577eaa676ceb00a848f0fd65fe2adc29:
> > > >
> > > >   Linux 5.15-rc3 (2021-09-26 14:08:19 -0700)
> > > >
> > > > are available in the Git repository at:
> > > >
> > > >   git@gitolite.kernel.org:pub/scm/linux/kernel/git/coresight/linux.git tags/coresight-next-v5.16
> > >
> > > Better but I get the following errors when my scripts try to merge them.
> > > Note, the linux-next scripts will give you the same complaint, so this
> > > isn't a new thing:
> >
> > Can you point me to the linux-next script you are referring to above?
> > Usually when that happens I get an email but this time I didn't get
> > anything.
>
> Is this tree/branch in linux-next now?  If so, you should have gotten an
> email.

Definitely: https://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git/log/?h=next

>
> My scripts were sent to the workflow mailing list a year or so ago, I
> can dig them up if needed.
>

Thanks - I'll look it up.

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2021-10-27 18:03 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-26 19:55 [GIT PULL v2] Coresight changes for v5.16 Mathieu Poirier
2021-10-26 19:55 ` Mathieu Poirier
2021-10-27  6:50 ` Greg KH
2021-10-27  6:50   ` Greg KH
2021-10-27 17:32   ` Mathieu Poirier
2021-10-27 17:32     ` Mathieu Poirier
2021-10-27 17:41     ` Greg KH
2021-10-27 17:41       ` Greg KH
2021-10-27 18:01       ` Mathieu Poirier
2021-10-27 18:01         ` Mathieu Poirier

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.