]> git.ipfire.org Git - thirdparty/libcgroup.git/commitdiff
add FILE_PATH_CHANGES to ignore list of patch review
authorKamalesh Babulal <kamalesh.babulal@oracle.com>
Wed, 30 Aug 2023 06:00:31 +0000 (11:30 +0530)
committerTom Hromatka <tom.hromatka@oracle.com>
Fri, 1 Sep 2023 16:23:38 +0000 (10:23 -0600)
Add FILE_PATH_CHANGES to the list of warnings, that is very specific to
Linux Kernel, which is triggered when a file is added, moved, or deleted
to the source tree. Let's ignore it and this patch also removes an extra
new line in the .checkpatch.conf.

Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
.checkpatch.conf

index 765016c6afd39ab3bfd9cc47ecec236426cce6c9..481e4b1ec3126fa60979678636a3472202aa1abf 100644 (file)
 # introducing it and remove it.
 --ignore NEW_TYPEDEFS
 
-
 # Ignore Kernel str* function recommendations
 --ignore STRCPY
 --ignore STRNCPY
+
+# Ignore the suggestion to add file changes (add, move, or delete) to the
+# MAINTAINERS file
+--ignore FILE_PATH_CHANGES