commit:     c26796850f00de4dbd6fa760c6bd4101e69f0393
Author:     Thomas Deutschmann <whissi <AT> whissi <DOT> de>
AuthorDate: Sat Nov 30 13:14:01 2019 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Nov 30 13:14:01 2019 +0000
URL:        https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=c2679685

Drop 2900_awk-regexp-warnings.patch

Signed-off-by: Thomas Deutschmann <whissi <AT> whissi.de>

 2900_awk-regexp-warnings.patch | 89 ------------------------------------------
 1 file changed, 89 deletions(-)

diff --git a/2900_awk-regexp-warnings.patch b/2900_awk-regexp-warnings.patch
deleted file mode 100644
index 5e62625..0000000
--- a/2900_awk-regexp-warnings.patch
+++ /dev/null
@@ -1,89 +0,0 @@
-From 700c1018b86d0d4b3f1f2d459708c0cdf42b521d Mon Sep 17 00:00:00 2001
-From: Alexander Kapshuk <[email protected]>
-Date: Tue, 24 Sep 2019 07:46:59 +0300
-Subject: x86/insn: Fix awk regexp warnings
-
-gawk 5.0.1 generates the following regexp warnings:
-
-  GEN      /home/sasha/torvalds/tools/objtool/arch/x86/lib/inat-tables.c
-  awk: ../arch/x86/tools/gen-insn-attr-x86.awk:260: warning: regexp escape 
sequence `\:' is not a known regexp operator
-  awk: ../arch/x86/tools/gen-insn-attr-x86.awk:350: 
(FILENAME=../arch/x86/lib/x86-opcode-map.txt FNR=41) warning: regexp escape 
sequence `\&' is  not a known regexp operator
-
-Ealier versions of gawk are not known to generate these warnings. The
-gawk manual referenced below does not list characters ':' and '&' as
-needing escaping, so 'unescape' them. See
-
-  https://www.gnu.org/software/gawk/manual/html_node/Escape-Sequences.html
-
-for more info.
-
-Running diff on the output generated by the script before and after
-applying the patch reported no differences.
-
- [ bp: Massage commit message. ]
-
-[ Caught the respective tools header discrepancy. ]
-Reported-by: kbuild test robot <[email protected]>
-Signed-off-by: Alexander Kapshuk <[email protected]>
-Signed-off-by: Borislav Petkov <[email protected]>
-Acked-by: Masami Hiramatsu <[email protected]>
-Cc: "H. Peter Anvin" <[email protected]>
-Cc: "Peter Zijlstra (Intel)" <[email protected]>
-Cc: Arnaldo Carvalho de Melo <[email protected]>
-Cc: Ingo Molnar <[email protected]>
-Cc: Josh Poimboeuf <[email protected]>
-Cc: Thomas Gleixner <[email protected]>
-Cc: x86-ml <[email protected]>
-Link: 
https://lkml.kernel.org/r/[email protected]
----
- arch/x86/tools/gen-insn-attr-x86.awk       | 4 ++--
- tools/arch/x86/tools/gen-insn-attr-x86.awk | 4 ++--
- 2 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/arch/x86/tools/gen-insn-attr-x86.awk 
b/arch/x86/tools/gen-insn-attr-x86.awk
-index b02a36b2c14f..a42015b305f4 100644
---- a/arch/x86/tools/gen-insn-attr-x86.awk
-+++ b/arch/x86/tools/gen-insn-attr-x86.awk
-@@ -69,7 +69,7 @@ BEGIN {
- 
-       lprefix1_expr = "\\((66|!F3)\\)"
-       lprefix2_expr = "\\(F3\\)"
--      lprefix3_expr = "\\((F2|!F3|66\\&F2)\\)"
-+      lprefix3_expr = "\\((F2|!F3|66&F2)\\)"
-       lprefix_expr = "\\((66|F2|F3)\\)"
-       max_lprefix = 4
- 
-@@ -257,7 +257,7 @@ function convert_operands(count,opnd,       i,j,imm,mod)
-       return add_flags(imm, mod)
- }
- 
--/^[0-9a-f]+\:/ {
-+/^[0-9a-f]+:/ {
-       if (NR == 1)
-               next
-       # get index
-diff --git a/tools/arch/x86/tools/gen-insn-attr-x86.awk 
b/tools/arch/x86/tools/gen-insn-attr-x86.awk
-index b02a36b2c14f..a42015b305f4 100644
---- a/tools/objtool/arch/x86/tools/gen-insn-attr-x86.awk
-+++ b/tools/objtool/arch/x86/tools/gen-insn-attr-x86.awk
-@@ -69,7 +69,7 @@ BEGIN {
- 
-       lprefix1_expr = "\\((66|!F3)\\)"
-       lprefix2_expr = "\\(F3\\)"
--      lprefix3_expr = "\\((F2|!F3|66\\&F2)\\)"
-+      lprefix3_expr = "\\((F2|!F3|66&F2)\\)"
-       lprefix_expr = "\\((66|F2|F3)\\)"
-       max_lprefix = 4
- 
-@@ -257,7 +257,7 @@ function convert_operands(count,opnd,       i,j,imm,mod)
-       return add_flags(imm, mod)
- }
- 
--/^[0-9a-f]+\:/ {
-+/^[0-9a-f]+:/ {
-       if (NR == 1)
-               next
-       # get index
--- 
-cgit 1.2-0.3.lf.el7
-

Reply via email to