lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 12 May 2020 06:56:41 +0100 From: Alan Maguire <alan.maguire@...cle.com> To: ast@...nel.org, daniel@...earbox.net, bpf@...r.kernel.org Cc: joe@...ches.com, linux@...musvillemoes.dk, arnaldo.melo@...il.com, yhs@...com, kafai@...com, songliubraving@...com, andriin@...com, john.fastabend@...il.com, kpsingh@...omium.org, linux-kernel@...r.kernel.org, netdev@...r.kernel.org, Alan Maguire <alan.maguire@...cle.com> Subject: [PATCH v2 bpf-next 3/7] checkpatch: add new BTF pointer format specifier checkpatch complains about unknown format specifiers, so add the BTF format specifier we will implement in a subsequent patch to avoid errors. Signed-off-by: Alan Maguire <alan.maguire@...cle.com> --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index eac40f0..8efbb23 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -6085,7 +6085,7 @@ sub process { $specifier = $1; $extension = $2; $qualifier = $3; - if ($extension !~ /[SsBKRraEehMmIiUDdgVCbGNOxtf]/ || + if ($extension !~ /[SsBKRraEehMmIiUDdgVCbGNOxtfT]/ || ($extension eq "f" && defined $qualifier && $qualifier !~ /^w/)) { $bad_specifier = $specifier; -- 1.8.3.1
Powered by blists - more mailing lists