From: Anuj Mittal <anuj.mittal@intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [honister][PATCH 00/17] Patch review
Date: Wed, 11 May 2022 10:57:15 +0800 [thread overview]
Message-ID: <cover.1652231471.git.anuj.mittal@intel.com> (raw)
Next set of changes for honister. Includes fixes to perf and
lttng-modules to support newer kernels with honister. Please review.
No problems seen while testing:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/3646
Thanks,
Anuj
The following changes since commit 1a6f5e27249afb6fb4d47c523b62b5dd2482a69d:
build-appliance-image: Update to honister head revision (2022-05-03 21:56:48 +0100)
are available in the Git repository at:
git://push.openembedded.org/openembedded-core-contrib anujm/honister
Bruce Ashfield (2):
lttng-modules: update to 2.13.1
lttng-modules: support kernel 5.18+
Chen Qi (1):
cases/buildepoxy.py: fix typo
Davide Gardenal (1):
rootfs-postcommands: fix symlinks where link and output path are equal
Khem Raj (1):
busybox: Use base_bindir instead of hardcoding /bin path
Max Krummenacher (2):
perf: sort-pmuevents: don't drop elements
perf: sort-pmuevents: allow for additional type qualifiers and storage
class
Paul Gortmaker (1):
install/devshell: Introduce git intercept script due to fakeroot
issues
Portia (1):
volatile-binds: Change DefaultDependencies from false to no
Rahul Kumar (1):
neard: Switch SRC_URI to git repo
Richard Purdie (4):
base: Avoid circular references to our own scripts
base: Drop git intercept
scripts: Make git intercept global
scripts/git: Ensure we don't have circular references
Ross Burton (1):
oeqa/selftest: add test for git working correctly inside pseudo
wangmy (2):
lttng-modules: upgrade 2.13.1 -> 2.13.2
lttng-modules: upgrade 2.13.2 -> 2.13.3
.../git-submodule-test/git-submodule-test.bb | 15 +
meta/classes/base.bbclass | 4 +
meta/classes/devshell.bbclass | 2 +
meta/classes/rootfs-postcommands.bbclass | 14 +-
meta/lib/oeqa/sdk/cases/buildepoxy.py | 2 +-
meta/lib/oeqa/selftest/cases/git.py | 15 +
meta/recipes-connectivity/neard/neard_0.16.bb | 13 +-
meta/recipes-core/busybox/busybox.inc | 2 +-
.../files/volatile-binds.service.in | 2 +-
...x-compaction-migratepages-event-name.patch | 37 +
...Remove-deprecated-CPU-hotplug-functi.patch | 394 ---------
...vent-allow-same-provider-and-event-n.patch | 48 +
...ile-Enable-Wimplicit-fallthrough-for.patch | 829 ------------------
...g-Don-t-re-read-p-state-when-emittin.patch | 183 ++++
.../0004-fix-block-remove-genhd.h-v5.18.patch | 45 +
...emove-REQ_OP_WRITE_SAME-support-v5.1.patch | 79 ++
...ndom-remove-unused-tracepoints-v5.18.patch | 47 +
...rethook-for-kretprobe-if-possible-v5.patch | 72 ++
...ore-Remove-scsi-scsi_request.h-v5.18.patch | 44 +
.../0009-Rename-genhd-wrapper-to-blkdev.patch | 76 ++
...n-cleanup-the-compaction-trace-event.patch | 106 +++
...ules_2.13.0.bb => lttng-modules_2.13.3.bb} | 15 +-
.../perf/perf/sort-pmuevents.py | 28 +-
scripts/git | 26 +
24 files changed, 845 insertions(+), 1253 deletions(-)
create mode 100644 meta/lib/oeqa/selftest/cases/git.py
create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0001-Fix-compaction-migratepages-event-name.patch
delete mode 100644 meta/recipes-kernel/lttng/lttng-modules/0001-fix-cpu-hotplug-Remove-deprecated-CPU-hotplug-functi.patch
create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0002-Fix-tracepoint-event-allow-same-provider-and-event-n.patch
delete mode 100644 meta/recipes-kernel/lttng/lttng-modules/0002-fix-Revert-Makefile-Enable-Wimplicit-fallthrough-for.patch
create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0003-fix-sched-tracing-Don-t-re-read-p-state-when-emittin.patch
create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0004-fix-block-remove-genhd.h-v5.18.patch
create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0005-fix-scsi-block-Remove-REQ_OP_WRITE_SAME-support-v5.1.patch
create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0006-fix-random-remove-unused-tracepoints-v5.18.patch
create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0007-fix-kprobes-Use-rethook-for-kretprobe-if-possible-v5.patch
create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0008-fix-scsi-core-Remove-scsi-scsi_request.h-v5.18.patch
create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0009-Rename-genhd-wrapper-to-blkdev.patch
create mode 100644 meta/recipes-kernel/lttng/lttng-modules/0010-fix-mm-compaction-cleanup-the-compaction-trace-event.patch
rename meta/recipes-kernel/lttng/{lttng-modules_2.13.0.bb => lttng-modules_2.13.3.bb} (65%)
create mode 100755 scripts/git
--
2.35.3
next reply other threads:[~2022-05-11 2:57 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-11 2:57 Anuj Mittal [this message]
2022-05-11 2:57 ` [honister][PATCH 01/17] busybox: Use base_bindir instead of hardcoding /bin path Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 02/17] cases/buildepoxy.py: fix typo Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 03/17] neard: Switch SRC_URI to git repo Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 04/17] rootfs-postcommands: fix symlinks where link and output path are equal Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 05/17] volatile-binds: Change DefaultDependencies from false to no Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 06/17] oeqa/selftest: add test for git working correctly inside pseudo Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 07/17] base: Avoid circular references to our own scripts Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 08/17] install/devshell: Introduce git intercept script due to fakeroot issues Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 09/17] base: Drop git intercept Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 10/17] scripts: Make git intercept global Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 11/17] scripts/git: Ensure we don't have circular references Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 12/17] lttng-modules: update to 2.13.1 Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 13/17] lttng-modules: upgrade 2.13.1 -> 2.13.2 Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 14/17] lttng-modules: upgrade 2.13.2 -> 2.13.3 Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 15/17] lttng-modules: support kernel 5.18+ Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 16/17] perf: sort-pmuevents: don't drop elements Anuj Mittal
2022-05-11 2:57 ` [honister][PATCH 17/17] perf: sort-pmuevents: allow for additional type qualifiers and storage class Anuj Mittal
-- strict thread matches above, loose matches on Subject: below --
2022-02-04 14:12 [honister][PATCH 00/17] Patch review Anuj Mittal
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=cover.1652231471.git.anuj.mittal@intel.com \
--to=anuj.mittal@intel.com \
--cc=openembedded-core@lists.openembedded.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.