aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/checkpatch.yml
diff options
context:
space:
mode:
authorBernd Schubert <bernd@bsbernd.com>2025-01-24 11:28:52 +0100
committerBernd Schubert <bernd@bsbernd.com>2025-01-24 12:30:52 +0100
commit48d12f86e73e456b53defc4a8a98ed4db8a54b39 (patch)
tree643cb54b5671ae964ffc0191c34904ee619f9434 /.github/workflows/checkpatch.yml
parentcf56672c8a39db594949588277009a721ef7eeae (diff)
downloadlibfuse-48d12f86e73e456b53defc4a8a98ed4db8a54b39.tar.gz
checkpatch: Ignore ENOSYS_SYSCALL
This ENOSYS is the fuse protocol return code to tell fuse client/kernel that an operation is not supported, warning on it is not right. Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
Diffstat (limited to '.github/workflows/checkpatch.yml')
-rw-r--r--.github/workflows/checkpatch.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/checkpatch.yml b/.github/workflows/checkpatch.yml
index 91db8f2..1adada4 100644
--- a/.github/workflows/checkpatch.yml
+++ b/.github/workflows/checkpatch.yml
@@ -24,7 +24,7 @@ jobs:
git rev-list --reverse $base_commit..HEAD | while read commit; do
subject=$(git log -1 --format=%s $commit)
echo "Checking commit: $commit - $subject"
- if ! ./checkpatch.pl --no-tree --ignore MAINTAINERS,SPDX_LICENSE_TAG,COMMIT_MESSAGE,FILE_PATH_CHANGES,EMAIL_SUBJECT,AVOID_EXTERNS,GIT_COMMIT_ID -g $commit; then
+ if ! ./checkpatch.pl --no-tree --ignore MAINTAINERS,SPDX_LICENSE_TAG,COMMIT_MESSAGE,FILE_PATH_CHANGES,EMAIL_SUBJECT,AVOID_EXTERNS,GIT_COMMIT_ID,ENOSYS_SYSCALL -g $commit; then
echo "checkpatch.pl found issues in commit $commit - $subject"
exit 1
fi