From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
To: Greg KH <greg@kroah.com>
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>,
Chunyan Zhang <zhang.chunyan@linaro.org>,
laurent.fert@intel.com, yann.fouassier@intel.com,
linux-kernel@vger.kernel.org,
Alexander Shishkin <alexander.shishkin@linux.intel.com>
Subject: [QUEUED v0 00/19] stm class/intel_th: Patches in my queue
Date: Fri, 5 Feb 2016 18:35:09 +0200 [thread overview]
Message-ID: <1454690128-21994-1-git-send-email-alexander.shishkin@linux.intel.com> (raw)
Hi everybody,
These are the patches that I have so far that I haven't managed to
push upstream yet. If you have questions, concerns or objections,
please let me know.
These are mostly fixes; the first 9 patches I was trying to get into
4.4 during later -rcs, but couldn't, so they are still here.
Should I set up a git tree for this somewhere?
Alexander Shishkin (14):
stm class: Fix locking in unbinding policy path
stm class: Fix link list locking
stm class: Prevent user-controllable allocations
intel_th: pci: Add Apollo Lake SOC support
intel_th: pci: Add Broxton SOC support
intel_th: Depend on HAS_IOMEM
intel_th: gth: Remove commented-out code
intel_th: Update scratchpad bits according to enabled output activity
stm class: Use driver's packet callback's return value
intel_th: sth: Sanitize packet callback's return values
stm class: Support devices with multiple instances
stm class: dummy_stm: Create multiple devices
intel_th: Set root device's drvdata early
intel_th: Use real device index in the node names
Arnd Bergmann (1):
stm class: Select CONFIG_SRCU
Chunyan Zhang (1):
stm class: Fix an off-by-one in master array allocation
Geert Uytterhoeven (2):
stm class: Hide STM-specific options if STM is disabled
intel_th: INTEL_TH should depend on HAS_DMA
Lucas Tanure (1):
stm class: Use a signed return type for stm_find_master_chan
drivers/hwtracing/intel_th/Kconfig | 1 +
drivers/hwtracing/intel_th/core.c | 30 ++++++++++++++--
drivers/hwtracing/intel_th/gth.c | 32 +++++++----------
drivers/hwtracing/intel_th/gth.h | 3 --
drivers/hwtracing/intel_th/intel_th.h | 41 ++++++++++++++++++++++
drivers/hwtracing/intel_th/pci.c | 12 +++++--
drivers/hwtracing/intel_th/sth.c | 11 ++++--
drivers/hwtracing/stm/Kconfig | 5 +++
drivers/hwtracing/stm/core.c | 66 +++++++++++++++++++++++++----------
drivers/hwtracing/stm/dummy_stm.c | 55 ++++++++++++++++++++++++-----
drivers/hwtracing/stm/policy.c | 25 +++++++++----
drivers/hwtracing/stm/stm.h | 1 +
include/linux/stm.h | 7 ++++
13 files changed, 225 insertions(+), 64 deletions(-)
--
2.7.0
next reply other threads:[~2016-02-05 16:35 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-05 16:35 Alexander Shishkin [this message]
2016-02-05 16:35 ` [QUEUED v0 01/19] stm class: Hide STM-specific options if STM is disabled Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 02/19] intel_th: INTEL_TH should depend on HAS_DMA Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 03/19] stm class: Select CONFIG_SRCU Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 04/19] stm class: Fix locking in unbinding policy path Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 05/19] stm class: Fix link list locking Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 06/19] stm class: Fix an off-by-one in master array allocation Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 07/19] stm class: Prevent user-controllable allocations Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 08/19] intel_th: pci: Add Apollo Lake SOC support Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 09/19] intel_th: pci: Add Broxton " Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 10/19] stm class: Use a signed return type for stm_find_master_chan Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 11/19] intel_th: Depend on HAS_IOMEM Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 12/19] intel_th: gth: Remove commented-out code Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 13/19] intel_th: Update scratchpad bits according to enabled output activity Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 14/19] stm class: Use driver's packet callback's return value Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 15/19] intel_th: sth: Sanitize packet callback's return values Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 16/19] stm class: Support devices with multiple instances Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 17/19] stm class: dummy_stm: Create multiple devices Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 18/19] intel_th: Set root device's drvdata early Alexander Shishkin
2016-02-05 16:35 ` [QUEUED v0 19/19] intel_th: Use real device index in the node names Alexander Shishkin
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=1454690128-21994-1-git-send-email-alexander.shishkin@linux.intel.com \
--to=alexander.shishkin@linux.intel.com \
--cc=greg@kroah.com \
--cc=laurent.fert@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.poirier@linaro.org \
--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
all inboxes | Powered by JetHome®