checkpatch: Ignore ENOSYS_SYSCALL
authorBernd Schubert <bernd@bsbernd.com>
Fri, 24 Jan 2025 10:28:52 +0000 (11:28 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Mon, 10 Feb 2025 15:56:45 +0000 (16:56 +0100)
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>
.github/workflows/checkpatch.yml

index 91db8f2e37fb39dafedc12055ecfc4fbb5f8e14a..1adada4c537df0bc3473da3c9235041eed0e9634 100644 (file)
@@ -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