osmith has posted comments on this change by osmith. ( https://gerrit.osmocom.org/c/libosmocore/+/40920?usp=email )
Change subject: VTY: Initialize fields of struct cmd_element in order of declaration
......................................................................
Patch Set 1: Verified+1
(3 comments)
Patchset:
PS1:
Removed V-1 for liniting failures, as this patch is cherry-picked from master. other tests passed, so setting V+1.
File include/osmocom/vty/command.h:
https://gerrit.osmocom.org/c/libosmocore/+/40920/comment/df1ef35d_568717f8?… :
PS1, Line 222: .attr = attrs, \
cherry-picked from master, keeping the patch as-is.
https://gerrit.osmocom.org/c/libosmocore/+/40920/comment/3a9a3087_341940cd?… :
PS1, Line 233: .attr = attrs, \
cherry-picked from master, keeping the patch as-is.
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/40920?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmocore
Gerrit-Branch: osmith/1.11.2
Gerrit-Change-Id: Ifaa31980f149f9c1f1a9b28f318a4850f6855472
Gerrit-Change-Number: 40920
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-CC: jolly <andreas(a)eversberg.eu>
Gerrit-Comment-Date: Tue, 26 Aug 2025 13:42:39 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Attention is currently required from: osmith.
osmith has removed a vote from this change. ( https://gerrit.osmocom.org/c/libosmocore/+/40920?usp=email )
Change subject: VTY: Initialize fields of struct cmd_element in order of declaration
......................................................................
Removed Verified-1 by Jenkins Builder (1000002)
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/40920?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: deleteVote
Gerrit-Project: libosmocore
Gerrit-Branch: osmith/1.11.2
Gerrit-Change-Id: Ifaa31980f149f9c1f1a9b28f318a4850f6855472
Gerrit-Change-Number: 40920
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: jolly <andreas(a)eversberg.eu>
Gerrit-Attention: osmith <osmith(a)sysmocom.de>
Jenkins Builder has posted comments on this change by osmith. ( https://gerrit.osmocom.org/c/libosmocore/+/40920?usp=email )
Change subject: VTY: Initialize fields of struct cmd_element in order of declaration
......................................................................
Patch Set 1:
(2 comments)
File include/osmocom/vty/command.h:
Robot Comment from checkpatch (run ID ):
https://gerrit.osmocom.org/c/libosmocore/+/40920/comment/58a0fc9a_e901a17f?… :
PS1, Line 222: .attr = attrs, \
please, no spaces at the start of a line
Robot Comment from checkpatch (run ID ):
https://gerrit.osmocom.org/c/libosmocore/+/40920/comment/365b2f76_3ce6e4f2?… :
PS1, Line 233: .attr = attrs, \
please, no spaces at the start of a line
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/40920?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmocore
Gerrit-Branch: osmith/1.11.2
Gerrit-Change-Id: Ifaa31980f149f9c1f1a9b28f318a4850f6855472
Gerrit-Change-Number: 40920
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-CC: Jenkins Builder
Gerrit-CC: jolly <andreas(a)eversberg.eu>
Gerrit-Comment-Date: Tue, 26 Aug 2025 13:40:48 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmocore/+/40919?usp=email )
Change subject: Makefile: fix doc/vty race condition
......................................................................
Makefile: fix doc/vty race condition
It is possible that doxygen is unable to create the "doc/vty" directory,
as we have seen in jenkins. Create it before running doxygen as it is
done for other doc dirs above, e.g.:
rm -rf $(top_builddir)/doc/isdn; mkdir -p $(top_builddir)/doc/isdn
Note that the doc/vty dir is expected to exist already inside the source
tree, as it contains versioned failes. As I understand it, the error
happens when building out-of-tree.
Fix for:
error: tag OUTPUT_DIRECTORY: Output directory 'doc/vty' does not exist and cannot be created
Doxygen version used: 1.9.4
Exiting...
touch "doc/libosmovty.tag.prep"
make[2]: [Makefile:1357: doc/libosmovty.tag.prep] Error 1 (ignored)
touch: cannot touch 'doc/libosmovty.tag.prep': No such file or directory
Related: https://gerrit.osmocom.org/c/libosmocore/+/39827/1#message-02393b0dc4323a19…
Change-Id: If9029059ac60060bdb14f5629f50836166e3afd7
(cherry picked from commit 219f3d0392344b11a8f24a264572fd8e2e4dee12)
---
M Makefile.am
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/19/40919/1
diff --git a/Makefile.am b/Makefile.am
index 8a8f963..7adb00b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -115,6 +115,7 @@
$(top_srcdir)/src/vty/*.c
rm -rf $(top_builddir)/doc/vty/html $(top_builddir)/doc/vty/latex
rm -rf $(top_builddir)/doc/libosmovty.map
+ mkdir -p $(top_builddir)/doc/vty
-$(DOXYGEN) $(top_builddir)/Doxyfile.vty
touch "$@"
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/40919?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: libosmocore
Gerrit-Branch: osmith/1.11.2
Gerrit-Change-Id: If9029059ac60060bdb14f5629f50836166e3afd7
Gerrit-Change-Number: 40919
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>