Skip to content

[PW_SID:1057556] Linux RISC-V trace framework and drivers#1496

Open
linux-riscv-bot wants to merge 13 commits intoworkflowfrom
pw1057556
Open

[PW_SID:1057556] Linux RISC-V trace framework and drivers#1496
linux-riscv-bot wants to merge 13 commits intoworkflowfrom
pw1057556

Conversation

@linux-riscv-bot
Copy link

PR for series 1057556 applied to workflow

Name: Linux RISC-V trace framework and drivers
URL: https://patchwork.kernel.org/project/linux-riscv/list/?series=1057556
Version: 3

Linux RISC-V bot and others added 13 commits February 23, 2026 20:00
Add device tree bindings for the memory mapped RISC-V trace components
which support both the RISC-V efficient trace (E-trace) protocol and
the RISC-V Nexus-based trace (N-trace) protocol.

The RISC-V trace components are defined by the RISC-V trace control
interface specification.

Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
The RISC-V Trace Control Interface Specification [1] defines a standard
way of implementing RISC-V trace related modular components irrespective
to underlying trace format (E-trace or N-trace). These RISC-V trace
components are organized in a graph-like topology where each RISC-V
hart has its own RISC-V trace encoder component.

Implement a basic driver framework for RISC-V trace where RISC-V trace
components are instantiated by a common platform driver and a separate
RISC-V trace driver for each type of RISC-V trace component.

[1] https://github.com/riscv-non-isa/tg-nexus-trace/releases/download/1.0_Ratified/RISC-V-Trace-Control-Interface.pdf

Co-developed-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Signed-off-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
Trace needs to be configured on a chain of trace components which are
connected to each other. These chain of components is also referred
to as trace component path. Add functions to create/destroy a trace
component path which will be later used by RISC-V trace perf support.

Co-developed-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Signed-off-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
The perf driver framework needs to be able to start / stop all components
in a trace component path during its operation. Add rvtrace_path_start()
and rvtrace_path_stop() functions for this purpose.

Co-developed-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
Add initial implementation of RISC-V trace encoder driver. The encoder
is defined in the RISC-V Trace Control Interface specification.

Co-developed-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
The RISC-V trace ramsink will need a mechanism to copy trace data
into the perf AUX buffer. Add rvtrace_path_copyto_auxbuf() function
and corresponding trace driver callback copyto_auxbuf() for this
purpose.

Co-developed-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Signed-off-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
Add initial implementation of RISC-V trace ramsink driver. The ramsink
is defined in the RISC-V Trace Control Interface specification.

Co-developed-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
The RISC-V ramsink trace component may have implementation specific
restrictions such that the component can only write trace data in
particular parts of DRAM.

Enable DMA_RESTRICTED_POOL in the defconfig so that dma_alloc_*()
and dma_free_*() APIs work for devices with DMA address restrictions.

Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
Add perf driver for RISC-V tracing similar to ARM Coresight and Hisilicon
PTT drivers. The driver adds 'rvtrace' event descriptor which can be used
by the perf tool to record the RISC-V trace data.

Co-developed-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
Introduce the required auxiliary API functions allowing the perf core
to interact with RISC-V trace perf driver.

Co-developed-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Reviewed-by: Nutty Liu <nutty.liu@hotmail.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
Add bare bones support for RISC-V trace decoder so that the data received
from the hardware by the RISC-V trace perf driver can be written to the
perf record output file.

Co-developed-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Mayuresh Chitale <mayuresh.chitale@oss.qualcomm.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
Add Mayuresh and myself as maintainers for RISC-V trace framework
and drivers.

Signed-off-by: Anup Patel <anup.patel@oss.qualcomm.com>
Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
build-rv32-defconfig
Desc: Builds riscv32 defconfig
Duration: 135.81 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
build-rv64-clang-allmodconfig
Desc: Builds riscv64 allmodconfig with Clang, and checks for errors and added warnings
Duration: 1000.61 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
build-rv64-gcc-allmodconfig
Desc: Builds riscv64 allmodconfig with GCC, and checks for errors and added warnings
Duration: 1350.32 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
build-rv64-nommu-k210-defconfig
Desc: Builds riscv64 defconfig with NOMMU for K210
Duration: 25.27 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
build-rv64-nommu-k210-virt
Desc: Builds riscv64 defconfig with NOMMU for the virt platform
Duration: 26.10 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
checkpatch
Desc: Runs checkpatch.pl on the patch
Duration: 1.83 seconds
Result: WARNING
Output:

WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#21: 
new file mode 100644

total: 0 errors, 1 warnings, 0 checks, 120 lines checked

NOTE: For some of the reported defects, checkpatch may be able to
      mechanically convert to the typical style using --fix or --fix-inplace.

Commit 58a1dd54e864 ("dt-bindings: Add RISC-V trace component bindings") has style problems, please review.

NOTE: Ignored message types: ALLOC_SIZEOF_STRUCT CAMELCASE COMMIT_LOG_LONG_LINE GIT_COMMIT_ID MACRO_ARG_REUSE NO_AUTHOR_SIGN_OFF

NOTE: If any of the errors are false positives, please report
      them to the maintainer, see CHECKPATCH in MAINTAINERS.
total: 0 errors, 1 warnings, 0 checks, 120 lines checked
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?


@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
dtb-warn-rv64
Desc: Checks for Device Tree warnings/errors
Duration: 82.95 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
header-inline
Desc: Detects static functions without inline keyword in header files
Duration: 0.25 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
kdoc
Desc: Detects for kdoc errors
Duration: 0.90 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
module-param
Desc: Detect module_param changes
Duration: 0.26 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
verify-fixes
Desc: Verifies that the Fixes: tags exist
Duration: 0.24 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 1: "[v3,01/12] dt-bindings: Add RISC-V trace component bindings"
verify-signedoff
Desc: Verifies that Signed-off-by: tags are correct
Duration: 0.32 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 2: "[v3,02/12] rvtrace: Initial implementation of driver framework"
build-rv32-defconfig
Desc: Builds riscv32 defconfig
Duration: 135.11 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 2: "[v3,02/12] rvtrace: Initial implementation of driver framework"
build-rv64-clang-allmodconfig
Desc: Builds riscv64 allmodconfig with Clang, and checks for errors and added warnings
Duration: 747.42 seconds
Result: ERROR
Output:

Redirect to /build/tmp.1VCKjOMKn8 and /build/tmp.1UPj6lEvLX
Tree base:
58a1dd54e8648 ("dt-bindings: Add RISC-V trace component bindings")
Building the whole tree with the patch
error:
Warning: /build/tmpd8tbbdhu/drivers/pmdomain/mediatek/mtk-mfg-pmdomain.c:244 struct __packed mtk_mfg_opp_entry { __le32 freq_khz; __le32 voltage_core; __le32 voltage_sram; __le32 posdiv; __le32 voltage_margin; __le32 power_mw; }; error: Cannot parse struct or union!



real	12m20.616s
user	464m56.272s
sys	83m42.252s

@linux-riscv-bot
Copy link
Author

Patch 2: "[v3,02/12] rvtrace: Initial implementation of driver framework"
build-rv64-gcc-allmodconfig
Desc: Builds riscv64 allmodconfig with GCC, and checks for errors and added warnings
Duration: 1097.32 seconds
Result: ERROR
Output:

Redirect to /build/tmp.sxTt02tehe and /build/tmp.5ri4rkghYr
Tree base:
58a1dd54e8648 ("dt-bindings: Add RISC-V trace component bindings")
Building the whole tree with the patch
error:
Warning: /build/tmpd8tbbdhu/drivers/pmdomain/mediatek/mtk-mfg-pmdomain.c:244 struct __packed mtk_mfg_opp_entry { __le32 freq_khz; __le32 voltage_core; __le32 voltage_sram; __le32 posdiv; __le32 voltage_margin; __le32 power_mw; }; error: Cannot parse struct or union!



real	18m10.622s
user	651m44.052s
sys	103m12.321s

@linux-riscv-bot
Copy link
Author

Patch 2: "[v3,02/12] rvtrace: Initial implementation of driver framework"
build-rv64-nommu-k210-defconfig
Desc: Builds riscv64 defconfig with NOMMU for K210
Duration: 24.60 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 2: "[v3,02/12] rvtrace: Initial implementation of driver framework"
build-rv64-nommu-k210-virt
Desc: Builds riscv64 defconfig with NOMMU for the virt platform
Duration: 25.49 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 10: "[v3,10/12] perf tools: Add RISC-V trace PMU record capabilities"
header-inline
Desc: Detects static functions without inline keyword in header files
Duration: 0.23 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 10: "[v3,10/12] perf tools: Add RISC-V trace PMU record capabilities"
kdoc
Desc: Detects for kdoc errors
Duration: 0.90 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 10: "[v3,10/12] perf tools: Add RISC-V trace PMU record capabilities"
module-param
Desc: Detect module_param changes
Duration: 0.26 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 10: "[v3,10/12] perf tools: Add RISC-V trace PMU record capabilities"
verify-fixes
Desc: Verifies that the Fixes: tags exist
Duration: 0.22 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 10: "[v3,10/12] perf tools: Add RISC-V trace PMU record capabilities"
verify-signedoff
Desc: Verifies that Signed-off-by: tags are correct
Duration: 0.30 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
build-rv32-defconfig
Desc: Builds riscv32 defconfig
Duration: 134.31 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
build-rv64-clang-allmodconfig
Desc: Builds riscv64 allmodconfig with Clang, and checks for errors and added warnings
Duration: 748.89 seconds
Result: ERROR
Output:

Redirect to /build/tmp.4SefMJJjfJ and /build/tmp.OlRVrpKOmW
Tree base:
31b39f7b0b458 ("perf tools: Add RISC-V trace PMU record capabilities")
Building the whole tree with the patch
error:
Warning: /build/tmpexa855lb/drivers/pmdomain/mediatek/mtk-mfg-pmdomain.c:244 struct __packed mtk_mfg_opp_entry { __le32 freq_khz; __le32 voltage_core; __le32 voltage_sram; __le32 posdiv; __le32 voltage_margin; __le32 power_mw; }; error: Cannot parse struct or union!



real	12m22.348s
user	466m46.845s
sys	84m17.416s

@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
build-rv64-gcc-allmodconfig
Desc: Builds riscv64 allmodconfig with GCC, and checks for errors and added warnings
Duration: 1100.44 seconds
Result: ERROR
Output:

Redirect to /build/tmp.kcTtCfpjPC and /build/tmp.axH8jgTENA
Tree base:
31b39f7b0b458 ("perf tools: Add RISC-V trace PMU record capabilities")
Building the whole tree with the patch
error:
Warning: /build/tmpexa855lb/drivers/pmdomain/mediatek/mtk-mfg-pmdomain.c:244 struct __packed mtk_mfg_opp_entry { __le32 freq_khz; __le32 voltage_core; __le32 voltage_sram; __le32 posdiv; __le32 voltage_margin; __le32 power_mw; }; error: Cannot parse struct or union!



real	18m13.783s
user	650m50.428s
sys	103m5.984s

@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
build-rv64-nommu-k210-defconfig
Desc: Builds riscv64 defconfig with NOMMU for K210
Duration: 25.98 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
build-rv64-nommu-k210-virt
Desc: Builds riscv64 defconfig with NOMMU for the virt platform
Duration: 26.69 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
checkpatch
Desc: Runs checkpatch.pl on the patch
Duration: 2.67 seconds
Result: WARNING
Output:

WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#56: 
new file mode 100644

total: 0 errors, 1 warnings, 0 checks, 118 lines checked

NOTE: For some of the reported defects, checkpatch may be able to
      mechanically convert to the typical style using --fix or --fix-inplace.

Commit e5b7cafc8c0b ("perf tools: Initial support for RISC-V trace decoder") has style problems, please review.

NOTE: Ignored message types: ALLOC_SIZEOF_STRUCT CAMELCASE COMMIT_LOG_LONG_LINE GIT_COMMIT_ID MACRO_ARG_REUSE NO_AUTHOR_SIGN_OFF

NOTE: If any of the errors are false positives, please report
      them to the maintainer, see CHECKPATCH in MAINTAINERS.
total: 0 errors, 1 warnings, 0 checks, 118 lines checked
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?


@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
dtb-warn-rv64
Desc: Checks for Device Tree warnings/errors
Duration: 81.75 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
header-inline
Desc: Detects static functions without inline keyword in header files
Duration: 0.24 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
kdoc
Desc: Detects for kdoc errors
Duration: 0.87 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
module-param
Desc: Detect module_param changes
Duration: 0.25 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
verify-fixes
Desc: Verifies that the Fixes: tags exist
Duration: 0.22 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 11: "[v3,11/12] perf tools: Initial support for RISC-V trace decoder"
verify-signedoff
Desc: Verifies that Signed-off-by: tags are correct
Duration: 0.30 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
build-rv32-defconfig
Desc: Builds riscv32 defconfig
Duration: 136.70 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
build-rv64-clang-allmodconfig
Desc: Builds riscv64 allmodconfig with Clang, and checks for errors and added warnings
Duration: 747.69 seconds
Result: ERROR
Output:

Redirect to /build/tmp.boLeQiC4ph and /build/tmp.q42nThdkej
Tree base:
e5b7cafc8c0b8 ("perf tools: Initial support for RISC-V trace decoder")
Building the whole tree with the patch
error:
Warning: /build/tmpe3et687x/drivers/pmdomain/mediatek/mtk-mfg-pmdomain.c:244 struct __packed mtk_mfg_opp_entry { __le32 freq_khz; __le32 voltage_core; __le32 voltage_sram; __le32 posdiv; __le32 voltage_margin; __le32 power_mw; }; error: Cannot parse struct or union!



real	12m21.238s
user	466m6.348s
sys	84m8.232s

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
build-rv64-gcc-allmodconfig
Desc: Builds riscv64 allmodconfig with GCC, and checks for errors and added warnings
Duration: 1102.36 seconds
Result: ERROR
Output:

Redirect to /build/tmp.kMpdk3Aj43 and /build/tmp.riPcIGe8yw
Tree base:
e5b7cafc8c0b8 ("perf tools: Initial support for RISC-V trace decoder")
Building the whole tree with the patch
error:
Warning: /build/tmpe3et687x/drivers/pmdomain/mediatek/mtk-mfg-pmdomain.c:244 struct __packed mtk_mfg_opp_entry { __le32 freq_khz; __le32 voltage_core; __le32 voltage_sram; __le32 posdiv; __le32 voltage_margin; __le32 power_mw; }; error: Cannot parse struct or union!



real	18m15.945s
user	651m1.731s
sys	103m38.154s

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
build-rv64-nommu-k210-defconfig
Desc: Builds riscv64 defconfig with NOMMU for K210
Duration: 26.81 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
build-rv64-nommu-k210-virt
Desc: Builds riscv64 defconfig with NOMMU for the virt platform
Duration: 28.84 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
checkpatch
Desc: Runs checkpatch.pl on the patch
Duration: 0.72 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
dtb-warn-rv64
Desc: Checks for Device Tree warnings/errors
Duration: 82.58 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
header-inline
Desc: Detects static functions without inline keyword in header files
Duration: 0.22 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
kdoc
Desc: Detects for kdoc errors
Duration: 0.95 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
module-param
Desc: Detect module_param changes
Duration: 0.31 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
verify-fixes
Desc: Verifies that the Fixes: tags exist
Duration: 0.21 seconds
Result: PASS

@linux-riscv-bot
Copy link
Author

Patch 12: "[v3,12/12] MAINTAINERS: Add entry for RISC-V trace framework"
verify-signedoff
Desc: Verifies that Signed-off-by: tags are correct
Duration: 0.29 seconds
Result: PASS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants