Started by upstream project "gerrit-osmo-ccid-firmware" build number 165 originally caused by: Triggered by Gerrit: https://gerrit.osmocom.org/c/osmo-ccid-firmware/+/42621 in silent mode. Running as SYSTEM Building remotely on build5-deb12build-ansible (ttcn3 obs osmo-gsm-tester-build qemu io_uring linux-shallow-clone osmocom-gerrit coverity osmocom-master) in workspace /home/osmocom-build/jenkins/workspace/gerrit-lint [ssh-agent] Looking for ssh-agent implementation... $ ssh-agent SSH_AUTH_SOCK=/tmp/ssh-bZ3SRkI0FAqo/agent.4176979 SSH_AGENT_PID=4176982 [ssh-agent] Started. Running ssh-add (command line suppressed) Identity added: /home/osmocom-build/jenkins/workspace/gerrit-lint@tmp/private_key_13705819217725192586.key (/home/osmocom-build/jenkins/workspace/gerrit-lint@tmp/private_key_13705819217725192586.key) [ssh-agent] Using credentials jenkins (gerrit.osmocom.org) The recommended git tool is: NONE using credential d5eda5e9-b59d-44ba-88d2-43473cb6e42d Wiping out workspace first. Cloning the remote Git repository Cloning repository ssh://jenkins@gerrit.osmocom.org:29418/osmo-ccid-firmware > git init /home/osmocom-build/jenkins/workspace/gerrit-lint/code-from-gerrit # timeout=10 Fetching upstream changes from ssh://jenkins@gerrit.osmocom.org:29418/osmo-ccid-firmware > git --version # timeout=10 > git --version # 'git version 2.39.5' using GIT_SSH to set credentials gerrit.osmocom.org Verifying host key using known hosts file, will automatically accept unseen keys > git fetch --tags --force --progress -- ssh://jenkins@gerrit.osmocom.org:29418/osmo-ccid-firmware +refs/heads/*:refs/remotes/origin/* # timeout=10 > git config remote.origin.url ssh://jenkins@gerrit.osmocom.org:29418/osmo-ccid-firmware # timeout=10 > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10 > git config remote.origin.url ssh://jenkins@gerrit.osmocom.org:29418/osmo-ccid-firmware # timeout=10 Fetching upstream changes from ssh://jenkins@gerrit.osmocom.org:29418/osmo-ccid-firmware using GIT_SSH to set credentials gerrit.osmocom.org Verifying host key using known hosts file, will automatically accept unseen keys > git fetch --tags --force --progress -- ssh://jenkins@gerrit.osmocom.org:29418/osmo-ccid-firmware refs/changes/21/42621/2 # timeout=10 > git rev-parse FETCH_HEAD^{commit} # timeout=10 Checking out Revision ce5ed31548b0caab45ca64f8956216a6ad290e86 (master) > git config core.sparsecheckout # timeout=10 > git checkout -f ce5ed31548b0caab45ca64f8956216a6ad290e86 # timeout=10 Commit message: "octsim: usb_descriptors: use LE16/LE32 for consistancy" > git rev-parse FETCH_HEAD^{commit} # timeout=10 > git rev-list --no-walk 238fa26923ad12e7c248fa00419dc3c919524a0c # timeout=10 [gerrit-lint] $ /bin/sh -xe /tmp/jenkins15503900409725363166.sh + rm -rf osmo-ci + git clone --depth=1 --branch=master https://gerrit.osmocom.org/osmo-ci osmo-ci Cloning into 'osmo-ci'... + git -C osmo-ci log --oneline 22720c0 scripts: fix deprecation warnings + readlink -f /tmp/ssh-bZ3SRkI0FAqo/agent.4176979 + docker run --rm -e GERRIT_HOST=gerrit.osmocom.org -e GERRIT_PORT=29418 -e GERRIT_PROJECT=osmo-ccid-firmware -e GERRIT_CHANGE_NUMBER=42621 -e GERRIT_PATCHSET_NUMBER=2 -e JENKINS_HOME=1 -e SSH_AUTH_SOCK=/ssh-agent -u build -v /tmp/ssh-bZ3SRkI0FAqo/agent.4176979:/ssh-agent -v ./code-from-gerrit:/build/code-from-gerrit -v ./osmo-ci:/build/osmo-ci -w /build/code-from-gerrit osmocom-build/debian-trixie-build /build/osmo-ci/lint/lint_diff.sh HEAD~1 Running docker_run_rm.sh on the whole tree... Running checkpatch on 'git diff HEAD~1'... config: .checkpatch.conf Running clang-format on 'git diff HEAD~1'... Debian clang-format version 19.1.7 (3+b1) --- sysmoOCTSIM/usb_descriptors.c (before formatting) +++ sysmoOCTSIM/usb_descriptors.c (after formatting) @@ -24,8 +24,6 @@ #include "cdcdf_acm_desc.h" #include "usb_descriptors.h" - - const struct usb_desc_collection usb_fs_descs = { .dev = { .bLength = sizeof(struct usb_dev_desc), @@ -47,11 +45,9 @@ .bDescriptorType = USB_DT_CONFIG, .wTotalLength = LE16(sizeof(usb_fs_descs.cfg) + #ifdef WITH_DEBUG_CDC - sizeof(usb_fs_descs.cdc) + + sizeof(usb_fs_descs.cdc) + #endif - sizeof(usb_fs_descs.ccid) + - sizeof(usb_fs_descs.dfu_rt) + - sizeof(usb_fs_descs.func_dfu)), + sizeof(usb_fs_descs.ccid) + sizeof(usb_fs_descs.dfu_rt) + sizeof(usb_fs_descs.func_dfu)), #ifdef WITH_DEBUG_CDC .bNumInterfaces = 4, #else @@ -190,7 +186,8 @@ .bMaxCCIDBusySlots = 8, }, .ep = { - { /* Bulk-OUT descriptor */ + { + /* Bulk-OUT descriptor */ .bLength = sizeof(struct usb_ep_desc), .bDescriptorType = USB_DT_ENDPOINT, .bEndpointAddress = 0x02, @@ -198,7 +195,8 @@ .wMaxPacketSize = LE16(64), .bInterval = 0, }, - { /* Bulk-IN descriptor */ + { + /* Bulk-IN descriptor */ .bLength = sizeof(struct usb_ep_desc), .bDescriptorType = USB_DT_ENDPOINT, .bEndpointAddress = 0x83, @@ -206,7 +204,8 @@ .wMaxPacketSize = LE16(64), .bInterval = 0, }, - { /* Interrupt dscriptor */ + { + /* Interrupt dscriptor */ .bLength = sizeof(struct usb_ep_desc), .bDescriptorType = USB_DT_ENDPOINT, .bEndpointAddress = 0x84, @@ -225,15 +224,206 @@ #if 0 CDCD_ACM_STR_DESCES #else - 4, 3, 0x09, 0x04, - 50, 3, 's',0, 'y',0, 's',0, 'm',0, 'o',0, 'c',0, 'o',0, 'm',0, ' ',0, '-',0, ' ',0, 's',0, '.',0, 'f',0, '.',0, 'm',0, '.',0, 'c',0, '.',0, ' ',0, 'G',0, 'm',0, 'b',0, 'H',0, - 24, 3, 's',0, 'y',0, 's',0, 'm',0, 'o',0, 'O',0, 'C',0, 'T',0, 'S',0, 'I',0, 'M',0, - 4, 3, 'A', 0, - 22, 3, 'd',0, 'e',0, 'b',0, 'u',0, 'g',0, ' ',0, 'U',0, 'A',0, 'R',0, 'T',0, - 22, 3, 'd',0, 'e',0, 'b',0, 'u',0, 'g',0, ' ',0, 'U',0, 'A',0, 'R',0, 'T',0, - 10, 3, 'C',0, 'C',0, 'I',0, 'D',0, - 12, 3, 'F',0, 'I',0, 'X',0, 'M',0, 'E',0, - 52, 3, 's',0, 'y',0, 's',0, 'm',0, 'o',0, 'O',0, 'C',0, 'T',0, 'S',0, 'I',0, 'M',0, ' ',0, 'D',0, 'F',0, 'U',0, ' ',0, '(',0, 'R',0, 'u',0, 'n',0, 't',0, 'i',0, 'm',0, 'e',0 ,')',0, + 4, + 3, + 0x09, + 0x04, + 50, + 3, + 's', + 0, + 'y', + 0, + 's', + 0, + 'm', + 0, + 'o', + 0, + 'c', + 0, + 'o', + 0, + 'm', + 0, + ' ', + 0, + '-', + 0, + ' ', + 0, + 's', + 0, + '.', + 0, + 'f', + 0, + '.', + 0, + 'm', + 0, + '.', + 0, + 'c', + 0, + '.', + 0, + ' ', + 0, + 'G', + 0, + 'm', + 0, + 'b', + 0, + 'H', + 0, + 24, + 3, + 's', + 0, + 'y', + 0, + 's', + 0, + 'm', + 0, + 'o', + 0, + 'O', + 0, + 'C', + 0, + 'T', + 0, + 'S', + 0, + 'I', + 0, + 'M', + 0, + 4, + 3, + 'A', + 0, + 22, + 3, + 'd', + 0, + 'e', + 0, + 'b', + 0, + 'u', + 0, + 'g', + 0, + ' ', + 0, + 'U', + 0, + 'A', + 0, + 'R', + 0, + 'T', + 0, + 22, + 3, + 'd', + 0, + 'e', + 0, + 'b', + 0, + 'u', + 0, + 'g', + 0, + ' ', + 0, + 'U', + 0, + 'A', + 0, + 'R', + 0, + 'T', + 0, + 10, + 3, + 'C', + 0, + 'C', + 0, + 'I', + 0, + 'D', + 0, + 12, + 3, + 'F', + 0, + 'I', + 0, + 'X', + 0, + 'M', + 0, + 'E', + 0, + 52, + 3, + 's', + 0, + 'y', + 0, + 's', + 0, + 'm', + 0, + 'o', + 0, + 'O', + 0, + 'C', + 0, + 'T', + 0, + 'S', + 0, + 'I', + 0, + 'M', + 0, + ' ', + 0, + 'D', + 0, + 'F', + 0, + 'U', + 0, + ' ', + 0, + '(', + 0, + 'R', + 0, + 'u', + 0, + 'n', + 0, + 't', + 0, + 'i', + 0, + 'm', + 0, + 'e', + 0, + ')', + 0, #endif } }; Please fix the linting errors above. More information: https://osmocom.org/projects/cellular-infrastructure/wiki/Linting Leaving review comments in gerrit... + git diff -U0 HEAD~1 + /build/osmo-ci/lint/checkpatch/checkpatch_osmo.sh + cd .. + /build/osmo-ci/lint/checkpatch/checkpatch_json.py checkpatch_output gerrit_report.json checkpatch_output {"comments": [], "robot_comments": {}} + ssh -o UserKnownHostsFile=/build/osmo-ci/lint/../contrib/known_hosts -p 29418 -l jenkins gerrit.osmocom.org gerrit review --project osmo-ccid-firmware 42621,2 --json + exit 1 Build step 'Execute shell' marked build as failure $ ssh-agent -k unset SSH_AUTH_SOCK; unset SSH_AGENT_PID; echo Agent pid 4176982 killed; [ssh-agent] Stopped. Finished: FAILURE