All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <202202040124.7MMKaXXV-lkp@intel.com>

diff --git a/a/1.txt b/N1/1.txt
index 6f5661d..4756c17 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -1,15 +1,7 @@
-CC: kbuild-all(a)lists.01.org
-CC: linux-kernel(a)vger.kernel.org
-TO: Christophe Leroy <christophe.leroy@csgroup.eu>
-CC: Michael Ellerman <mpe@ellerman.id.au>
-
-tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
+tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git  master
 head:   88808fbbead481aedb46640a5ace69c58287f56a
 commit: 51c66ad849a703d9bbfd7704c941827aed0fd9fd powerpc/bpf: Implement extended BPF on PPC32
-date:   10 months ago
-:::::: branch date: 23 hours ago
-:::::: commit date: 10 months ago
-config: powerpc-randconfig-m031-20220130 (https://download.01.org/0day-ci/archive/20220204/202202040124.7MMKaXXV-lkp(a)intel.com/config)
+config: powerpc-randconfig-m031-20220130 (https://download.01.org/0day-ci/archive/20220204/202202040124.7MMKaXXV-lkp(a)intel.com/config )
 compiler: powerpc-linux-gcc (GCC) 11.2.0
 
 If you fix the issue, kindly add following tag as appropriate
@@ -21,7 +13,6 @@ arch/powerpc/net/bpf_jit_comp.c:225 bpf_int_jit_compile() error: uninitialized s
 
 vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c
 
-4ea76e90a97d22 Christophe Leroy 2021-03-22   87  
 4ea76e90a97d22 Christophe Leroy 2021-03-22   88  struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *fp)
 4ea76e90a97d22 Christophe Leroy 2021-03-22   89  {
 4ea76e90a97d22 Christophe Leroy 2021-03-22   90  	u32 proglen;
@@ -32,6 +23,8 @@ vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c
 4ea76e90a97d22 Christophe Leroy 2021-03-22   95  	struct powerpc64_jit_data *jit_data;
 4ea76e90a97d22 Christophe Leroy 2021-03-22   96  	struct codegen_context cgctx;
 4ea76e90a97d22 Christophe Leroy 2021-03-22   97  	int pass;
+                                                        ^^^^^^^^
+
 4ea76e90a97d22 Christophe Leroy 2021-03-22   98  	int flen;
 4ea76e90a97d22 Christophe Leroy 2021-03-22   99  	struct bpf_binary_header *bpf_hdr;
 4ea76e90a97d22 Christophe Leroy 2021-03-22  100  	struct bpf_prog *org_fp = fp;
@@ -71,6 +64,9 @@ vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c
 4ea76e90a97d22 Christophe Leroy 2021-03-22  134  		alloclen = proglen + FUNCTION_DESCR_SIZE;
 4ea76e90a97d22 Christophe Leroy 2021-03-22  135  		extra_pass = true;
 4ea76e90a97d22 Christophe Leroy 2021-03-22  136  		goto skip_init_ctx;
+
+Assume we hit this goto
+
 4ea76e90a97d22 Christophe Leroy 2021-03-22  137  	}
 4ea76e90a97d22 Christophe Leroy 2021-03-22  138  
 4ea76e90a97d22 Christophe Leroy 2021-03-22  139  	addrs = kcalloc(flen + 1, sizeof(*addrs), GFP_KERNEL);
@@ -138,10 +134,16 @@ vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c
 4ea76e90a97d22 Christophe Leroy 2021-03-22  201  
 4ea76e90a97d22 Christophe Leroy 2021-03-22  202  		/* There is no need to perform the usual passes. */
 4ea76e90a97d22 Christophe Leroy 2021-03-22  203  		goto skip_codegen_passes;
+
+Goto before pass is inintialized
+
 4ea76e90a97d22 Christophe Leroy 2021-03-22  204  	}
 4ea76e90a97d22 Christophe Leroy 2021-03-22  205  
 4ea76e90a97d22 Christophe Leroy 2021-03-22  206  	/* Code generation passes 1-2 */
 4ea76e90a97d22 Christophe Leroy 2021-03-22  207  	for (pass = 1; pass < 3; pass++) {
+                                                             ^^^^^^^^
+Here
+
 4ea76e90a97d22 Christophe Leroy 2021-03-22  208  		/* Now build the prologue, body code & epilogue for real. */
 4ea76e90a97d22 Christophe Leroy 2021-03-22  209  		cgctx.idx = 0;
 4ea76e90a97d22 Christophe Leroy 2021-03-22  210  		bpf_jit_build_prologue(code_base, &cgctx);
@@ -160,14 +162,15 @@ vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c
 4ea76e90a97d22 Christophe Leroy 2021-03-22  223  		 * rather than image, since opcodes are in code_base.
 4ea76e90a97d22 Christophe Leroy 2021-03-22  224  		 */
 4ea76e90a97d22 Christophe Leroy 2021-03-22 @225  		bpf_jit_dump(flen, proglen, pass, code_base);
-4ea76e90a97d22 Christophe Leroy 2021-03-22  226  
+                                                                                            ^^^^
+Uninitialized.
 
-:::::: The code at line 225 was first introduced by commit
-:::::: 4ea76e90a97d22f86adbb10044d29d919e620f2e powerpc/bpf: Move common functions into bpf_jit_comp.c
+4ea76e90a97d22 Christophe Leroy 2021-03-22  226  
 
-:::::: TO: Christophe Leroy <christophe.leroy@csgroup.eu>
-:::::: CC: Michael Ellerman <mpe@ellerman.id.au>
 
 ---
 0-DAY CI Kernel Test Service, Intel Corporation
-https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
+https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org 
+_______________________________________________
+kbuild mailing list -- kbuild(a)lists.01.org
+To unsubscribe send an email to kbuild-leave(a)lists.01.org
diff --git a/a/content_digest b/N1/content_digest
index 98302e7..f2d1e8f 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,21 +1,13 @@
- "From\0kernel test robot <lkp@intel.com>\0"
- "Subject\0arch/powerpc/net/bpf_jit_comp.c:225 bpf_int_jit_compile() error: uninitialized symbol 'pass'.\0"
- "Date\0Fri, 04 Feb 2022 09:29:09 +0800\0"
- "To\0kbuild@lists.01.org\0"
+ "From\0Dan Carpenter <dan.carpenter@oracle.com>\0"
+ "Subject\0[kbuild] arch/powerpc/net/bpf_jit_comp.c:225 bpf_int_jit_compile() error: uninitialized symbol 'pass'.\0"
+ "Date\0Fri, 04 Feb 2022 13:37:01 +0300\0"
+ "To\0kbuild-all@lists.01.org\0"
  "\01:1\0"
  "b\0"
- "CC: kbuild-all(a)lists.01.org\n"
- "CC: linux-kernel(a)vger.kernel.org\n"
- "TO: Christophe Leroy <christophe.leroy@csgroup.eu>\n"
- "CC: Michael Ellerman <mpe@ellerman.id.au>\n"
- "\n"
- "tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master\n"
+ "tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git  master\n"
  "head:   88808fbbead481aedb46640a5ace69c58287f56a\n"
  "commit: 51c66ad849a703d9bbfd7704c941827aed0fd9fd powerpc/bpf: Implement extended BPF on PPC32\n"
- "date:   10 months ago\n"
- ":::::: branch date: 23 hours ago\n"
- ":::::: commit date: 10 months ago\n"
- "config: powerpc-randconfig-m031-20220130 (https://download.01.org/0day-ci/archive/20220204/202202040124.7MMKaXXV-lkp(a)intel.com/config)\n"
+ "config: powerpc-randconfig-m031-20220130 (https://download.01.org/0day-ci/archive/20220204/202202040124.7MMKaXXV-lkp(a)intel.com/config )\n"
  "compiler: powerpc-linux-gcc (GCC) 11.2.0\n"
  "\n"
  "If you fix the issue, kindly add following tag as appropriate\n"
@@ -27,7 +19,6 @@
  "\n"
  "vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c\n"
  "\n"
- "4ea76e90a97d22 Christophe Leroy 2021-03-22   87  \n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   88  struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *fp)\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   89  {\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   90  \tu32 proglen;\n"
@@ -38,6 +29,8 @@
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   95  \tstruct powerpc64_jit_data *jit_data;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   96  \tstruct codegen_context cgctx;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   97  \tint pass;\n"
+ "                                                        ^^^^^^^^\n"
+ "\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   98  \tint flen;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   99  \tstruct bpf_binary_header *bpf_hdr;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  100  \tstruct bpf_prog *org_fp = fp;\n"
@@ -77,6 +70,9 @@
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  134  \t\talloclen = proglen + FUNCTION_DESCR_SIZE;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  135  \t\textra_pass = true;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  136  \t\tgoto skip_init_ctx;\n"
+ "\n"
+ "Assume we hit this goto\n"
+ "\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  137  \t}\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  138  \n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  139  \taddrs = kcalloc(flen + 1, sizeof(*addrs), GFP_KERNEL);\n"
@@ -144,10 +140,16 @@
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  201  \n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  202  \t\t/* There is no need to perform the usual passes. */\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  203  \t\tgoto skip_codegen_passes;\n"
+ "\n"
+ "Goto before pass is inintialized\n"
+ "\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  204  \t}\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  205  \n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  206  \t/* Code generation passes 1-2 */\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  207  \tfor (pass = 1; pass < 3; pass++) {\n"
+ "                                                             ^^^^^^^^\n"
+ "Here\n"
+ "\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  208  \t\t/* Now build the prologue, body code & epilogue for real. */\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  209  \t\tcgctx.idx = 0;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  210  \t\tbpf_jit_build_prologue(code_base, &cgctx);\n"
@@ -166,16 +168,17 @@
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  223  \t\t * rather than image, since opcodes are in code_base.\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  224  \t\t */\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22 @225  \t\tbpf_jit_dump(flen, proglen, pass, code_base);\n"
- "4ea76e90a97d22 Christophe Leroy 2021-03-22  226  \n"
+ "                                                                                            ^^^^\n"
+ "Uninitialized.\n"
  "\n"
- ":::::: The code at line 225 was first introduced by commit\n"
- ":::::: 4ea76e90a97d22f86adbb10044d29d919e620f2e powerpc/bpf: Move common functions into bpf_jit_comp.c\n"
+ "4ea76e90a97d22 Christophe Leroy 2021-03-22  226  \n"
  "\n"
- ":::::: TO: Christophe Leroy <christophe.leroy@csgroup.eu>\n"
- ":::::: CC: Michael Ellerman <mpe@ellerman.id.au>\n"
  "\n"
  "---\n"
  "0-DAY CI Kernel Test Service, Intel Corporation\n"
- https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
+ "https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org \n"
+ "_______________________________________________\n"
+ "kbuild mailing list -- kbuild(a)lists.01.org\n"
+ To unsubscribe send an email to kbuild-leave(a)lists.01.org
 
-8995e1474f5e8066fc8fda4e5fe3f05539c01fa2e2d09723fb152a6501604dfb
+a9e6d73d54fbdfa79357aeb0c4136499b195decd2d3acfa1b33de870d40a55c8

diff --git a/a/1.txt b/N2/1.txt
index 6f5661d..0dad75d 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -1,15 +1,7 @@
-CC: kbuild-all(a)lists.01.org
-CC: linux-kernel(a)vger.kernel.org
-TO: Christophe Leroy <christophe.leroy@csgroup.eu>
-CC: Michael Ellerman <mpe@ellerman.id.au>
-
-tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
+tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git  master
 head:   88808fbbead481aedb46640a5ace69c58287f56a
 commit: 51c66ad849a703d9bbfd7704c941827aed0fd9fd powerpc/bpf: Implement extended BPF on PPC32
-date:   10 months ago
-:::::: branch date: 23 hours ago
-:::::: commit date: 10 months ago
-config: powerpc-randconfig-m031-20220130 (https://download.01.org/0day-ci/archive/20220204/202202040124.7MMKaXXV-lkp(a)intel.com/config)
+config: powerpc-randconfig-m031-20220130 (https://download.01.org/0day-ci/archive/20220204/202202040124.7MMKaXXV-lkp@intel.com/config )
 compiler: powerpc-linux-gcc (GCC) 11.2.0
 
 If you fix the issue, kindly add following tag as appropriate
@@ -21,7 +13,6 @@ arch/powerpc/net/bpf_jit_comp.c:225 bpf_int_jit_compile() error: uninitialized s
 
 vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c
 
-4ea76e90a97d22 Christophe Leroy 2021-03-22   87  
 4ea76e90a97d22 Christophe Leroy 2021-03-22   88  struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *fp)
 4ea76e90a97d22 Christophe Leroy 2021-03-22   89  {
 4ea76e90a97d22 Christophe Leroy 2021-03-22   90  	u32 proglen;
@@ -32,6 +23,8 @@ vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c
 4ea76e90a97d22 Christophe Leroy 2021-03-22   95  	struct powerpc64_jit_data *jit_data;
 4ea76e90a97d22 Christophe Leroy 2021-03-22   96  	struct codegen_context cgctx;
 4ea76e90a97d22 Christophe Leroy 2021-03-22   97  	int pass;
+                                                        ^^^^^^^^
+
 4ea76e90a97d22 Christophe Leroy 2021-03-22   98  	int flen;
 4ea76e90a97d22 Christophe Leroy 2021-03-22   99  	struct bpf_binary_header *bpf_hdr;
 4ea76e90a97d22 Christophe Leroy 2021-03-22  100  	struct bpf_prog *org_fp = fp;
@@ -71,6 +64,9 @@ vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c
 4ea76e90a97d22 Christophe Leroy 2021-03-22  134  		alloclen = proglen + FUNCTION_DESCR_SIZE;
 4ea76e90a97d22 Christophe Leroy 2021-03-22  135  		extra_pass = true;
 4ea76e90a97d22 Christophe Leroy 2021-03-22  136  		goto skip_init_ctx;
+
+Assume we hit this goto
+
 4ea76e90a97d22 Christophe Leroy 2021-03-22  137  	}
 4ea76e90a97d22 Christophe Leroy 2021-03-22  138  
 4ea76e90a97d22 Christophe Leroy 2021-03-22  139  	addrs = kcalloc(flen + 1, sizeof(*addrs), GFP_KERNEL);
@@ -138,10 +134,16 @@ vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c
 4ea76e90a97d22 Christophe Leroy 2021-03-22  201  
 4ea76e90a97d22 Christophe Leroy 2021-03-22  202  		/* There is no need to perform the usual passes. */
 4ea76e90a97d22 Christophe Leroy 2021-03-22  203  		goto skip_codegen_passes;
+
+Goto before pass is inintialized
+
 4ea76e90a97d22 Christophe Leroy 2021-03-22  204  	}
 4ea76e90a97d22 Christophe Leroy 2021-03-22  205  
 4ea76e90a97d22 Christophe Leroy 2021-03-22  206  	/* Code generation passes 1-2 */
 4ea76e90a97d22 Christophe Leroy 2021-03-22  207  	for (pass = 1; pass < 3; pass++) {
+                                                             ^^^^^^^^
+Here
+
 4ea76e90a97d22 Christophe Leroy 2021-03-22  208  		/* Now build the prologue, body code & epilogue for real. */
 4ea76e90a97d22 Christophe Leroy 2021-03-22  209  		cgctx.idx = 0;
 4ea76e90a97d22 Christophe Leroy 2021-03-22  210  		bpf_jit_build_prologue(code_base, &cgctx);
@@ -160,14 +162,15 @@ vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c
 4ea76e90a97d22 Christophe Leroy 2021-03-22  223  		 * rather than image, since opcodes are in code_base.
 4ea76e90a97d22 Christophe Leroy 2021-03-22  224  		 */
 4ea76e90a97d22 Christophe Leroy 2021-03-22 @225  		bpf_jit_dump(flen, proglen, pass, code_base);
-4ea76e90a97d22 Christophe Leroy 2021-03-22  226  
+                                                                                            ^^^^
+Uninitialized.
 
-:::::: The code at line 225 was first introduced by commit
-:::::: 4ea76e90a97d22f86adbb10044d29d919e620f2e powerpc/bpf: Move common functions into bpf_jit_comp.c
+4ea76e90a97d22 Christophe Leroy 2021-03-22  226  
 
-:::::: TO: Christophe Leroy <christophe.leroy@csgroup.eu>
-:::::: CC: Michael Ellerman <mpe@ellerman.id.au>
 
 ---
 0-DAY CI Kernel Test Service, Intel Corporation
-https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
+https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org 
+_______________________________________________
+kbuild mailing list -- kbuild@lists.01.org
+To unsubscribe send an email to kbuild-leave@lists.01.org
diff --git a/a/content_digest b/N2/content_digest
index 98302e7..c1897ce 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,21 +1,18 @@
- "From\0kernel test robot <lkp@intel.com>\0"
- "Subject\0arch/powerpc/net/bpf_jit_comp.c:225 bpf_int_jit_compile() error: uninitialized symbol 'pass'.\0"
- "Date\0Fri, 04 Feb 2022 09:29:09 +0800\0"
- "To\0kbuild@lists.01.org\0"
- "\01:1\0"
+ "From\0Dan Carpenter <dan.carpenter@oracle.com>\0"
+ "Subject\0[kbuild] arch/powerpc/net/bpf_jit_comp.c:225 bpf_int_jit_compile() error: uninitialized symbol 'pass'.\0"
+ "Date\0Fri, 4 Feb 2022 13:37:01 +0300\0"
+ "To\0kbuild@lists.01.org"
+ " Christophe Leroy <christophe.leroy@csgroup.eu>\0"
+ "Cc\0lkp@intel.com"
+  kbuild-all@lists.01.org
+  linux-kernel@vger.kernel.org
+ " Michael Ellerman <mpe@ellerman.id.au>\0"
+ "\00:1\0"
  "b\0"
- "CC: kbuild-all(a)lists.01.org\n"
- "CC: linux-kernel(a)vger.kernel.org\n"
- "TO: Christophe Leroy <christophe.leroy@csgroup.eu>\n"
- "CC: Michael Ellerman <mpe@ellerman.id.au>\n"
- "\n"
- "tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master\n"
+ "tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git  master\n"
  "head:   88808fbbead481aedb46640a5ace69c58287f56a\n"
  "commit: 51c66ad849a703d9bbfd7704c941827aed0fd9fd powerpc/bpf: Implement extended BPF on PPC32\n"
- "date:   10 months ago\n"
- ":::::: branch date: 23 hours ago\n"
- ":::::: commit date: 10 months ago\n"
- "config: powerpc-randconfig-m031-20220130 (https://download.01.org/0day-ci/archive/20220204/202202040124.7MMKaXXV-lkp(a)intel.com/config)\n"
+ "config: powerpc-randconfig-m031-20220130 (https://download.01.org/0day-ci/archive/20220204/202202040124.7MMKaXXV-lkp@intel.com/config )\n"
  "compiler: powerpc-linux-gcc (GCC) 11.2.0\n"
  "\n"
  "If you fix the issue, kindly add following tag as appropriate\n"
@@ -27,7 +24,6 @@
  "\n"
  "vim +/pass +225 arch/powerpc/net/bpf_jit_comp.c\n"
  "\n"
- "4ea76e90a97d22 Christophe Leroy 2021-03-22   87  \n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   88  struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *fp)\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   89  {\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   90  \tu32 proglen;\n"
@@ -38,6 +34,8 @@
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   95  \tstruct powerpc64_jit_data *jit_data;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   96  \tstruct codegen_context cgctx;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   97  \tint pass;\n"
+ "                                                        ^^^^^^^^\n"
+ "\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   98  \tint flen;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22   99  \tstruct bpf_binary_header *bpf_hdr;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  100  \tstruct bpf_prog *org_fp = fp;\n"
@@ -77,6 +75,9 @@
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  134  \t\talloclen = proglen + FUNCTION_DESCR_SIZE;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  135  \t\textra_pass = true;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  136  \t\tgoto skip_init_ctx;\n"
+ "\n"
+ "Assume we hit this goto\n"
+ "\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  137  \t}\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  138  \n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  139  \taddrs = kcalloc(flen + 1, sizeof(*addrs), GFP_KERNEL);\n"
@@ -144,10 +145,16 @@
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  201  \n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  202  \t\t/* There is no need to perform the usual passes. */\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  203  \t\tgoto skip_codegen_passes;\n"
+ "\n"
+ "Goto before pass is inintialized\n"
+ "\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  204  \t}\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  205  \n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  206  \t/* Code generation passes 1-2 */\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  207  \tfor (pass = 1; pass < 3; pass++) {\n"
+ "                                                             ^^^^^^^^\n"
+ "Here\n"
+ "\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  208  \t\t/* Now build the prologue, body code & epilogue for real. */\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  209  \t\tcgctx.idx = 0;\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  210  \t\tbpf_jit_build_prologue(code_base, &cgctx);\n"
@@ -166,16 +173,17 @@
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  223  \t\t * rather than image, since opcodes are in code_base.\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22  224  \t\t */\n"
  "4ea76e90a97d22 Christophe Leroy 2021-03-22 @225  \t\tbpf_jit_dump(flen, proglen, pass, code_base);\n"
- "4ea76e90a97d22 Christophe Leroy 2021-03-22  226  \n"
+ "                                                                                            ^^^^\n"
+ "Uninitialized.\n"
  "\n"
- ":::::: The code at line 225 was first introduced by commit\n"
- ":::::: 4ea76e90a97d22f86adbb10044d29d919e620f2e powerpc/bpf: Move common functions into bpf_jit_comp.c\n"
+ "4ea76e90a97d22 Christophe Leroy 2021-03-22  226  \n"
  "\n"
- ":::::: TO: Christophe Leroy <christophe.leroy@csgroup.eu>\n"
- ":::::: CC: Michael Ellerman <mpe@ellerman.id.au>\n"
  "\n"
  "---\n"
  "0-DAY CI Kernel Test Service, Intel Corporation\n"
- https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
+ "https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org \n"
+ "_______________________________________________\n"
+ "kbuild mailing list -- kbuild@lists.01.org\n"
+ To unsubscribe send an email to kbuild-leave@lists.01.org
 
-8995e1474f5e8066fc8fda4e5fe3f05539c01fa2e2d09723fb152a6501604dfb
+a092a2e99831a63ac08fdd5ea0f2b258dd43649320b6f5e19ae53874232d8fad

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.