diff for duplicates of <YVMFvyGwfH+rxYPz@kroah.com> diff --git a/a/1.txt b/N1/1.txt index 0837725..81d2b67 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -252,7 +252,7 @@ Why does an attribute have to be part of this structure? > + int ret = 0; > + > + t_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL); -> + if (t_buf = NULL) +> + if (t_buf == NULL) > + return -ENOMEM; > + > + ret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE, @@ -292,7 +292,7 @@ Why does an attribute have to be part of this structure? > + int ret = 0; > + > + t_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL); -> + if (t_buf = NULL) +> + if (t_buf == NULL) > + return -ENOMEM; > + > + ret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE, @@ -338,7 +338,7 @@ elsewhere in this file. > + int ret = 0; > + > + t_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL); -> + if (t_buf = NULL) +> + if (t_buf == NULL) > + return -ENOMEM; > + > + ret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE, diff --git a/a/content_digest b/N1/content_digest index 9137495..189f318 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -2,7 +2,7 @@ "ref\020210928115102.57117-2-psampat@linux.ibm.com\0" "From\0Greg KH <gregkh@linuxfoundation.org>\0" "Subject\0Re: [PATCH v8 1/2] powerpc/pseries: Interface to represent PAPR firmware attributes\0" - "Date\0Tue, 28 Sep 2021 12:08:31 +0000\0" + "Date\0Tue, 28 Sep 2021 14:08:31 +0200\0" "To\0Pratik R. Sampat <psampat@linux.ibm.com>\0" "Cc\0mpe@ellerman.id.au" benh@kernel.crashing.org @@ -271,7 +271,7 @@ "> +\tint ret = 0;\n" "> +\n" "> +\tt_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL);\n" - "> +\tif (t_buf = NULL)\n" + "> +\tif (t_buf == NULL)\n" "> +\t\treturn -ENOMEM;\n" "> +\n" "> +\tret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE,\n" @@ -311,7 +311,7 @@ "> +\tint ret = 0;\n" "> +\n" "> +\tt_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL);\n" - "> +\tif (t_buf = NULL)\n" + "> +\tif (t_buf == NULL)\n" "> +\t\treturn -ENOMEM;\n" "> +\n" "> +\tret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE,\n" @@ -357,7 +357,7 @@ "> +\tint ret = 0;\n" "> +\n" "> +\tt_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL);\n" - "> +\tif (t_buf = NULL)\n" + "> +\tif (t_buf == NULL)\n" "> +\t\treturn -ENOMEM;\n" "> +\n" "> +\tret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE,\n" @@ -434,4 +434,4 @@ "\n" greg k-h -2fba94c4074ca70b6fa31009d2c914c5e1c44c9123146b65886240a7f5eb4f5f +62868e7638ca1541b49095a4b23f45b66943b7708f95393eb95811e38c0b5e9a
diff --git a/a/1.txt b/N2/1.txt index 0837725..81d2b67 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -252,7 +252,7 @@ Why does an attribute have to be part of this structure? > + int ret = 0; > + > + t_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL); -> + if (t_buf = NULL) +> + if (t_buf == NULL) > + return -ENOMEM; > + > + ret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE, @@ -292,7 +292,7 @@ Why does an attribute have to be part of this structure? > + int ret = 0; > + > + t_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL); -> + if (t_buf = NULL) +> + if (t_buf == NULL) > + return -ENOMEM; > + > + ret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE, @@ -338,7 +338,7 @@ elsewhere in this file. > + int ret = 0; > + > + t_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL); -> + if (t_buf = NULL) +> + if (t_buf == NULL) > + return -ENOMEM; > + > + ret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE, diff --git a/a/content_digest b/N2/content_digest index 9137495..b2d6999 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -2,19 +2,17 @@ "ref\020210928115102.57117-2-psampat@linux.ibm.com\0" "From\0Greg KH <gregkh@linuxfoundation.org>\0" "Subject\0Re: [PATCH v8 1/2] powerpc/pseries: Interface to represent PAPR firmware attributes\0" - "Date\0Tue, 28 Sep 2021 12:08:31 +0000\0" + "Date\0Tue, 28 Sep 2021 14:08:31 +0200\0" "To\0Pratik R. Sampat <psampat@linux.ibm.com>\0" - "Cc\0mpe@ellerman.id.au" - benh@kernel.crashing.org - paulus@samba.org - shuah@kernel.org - farosas@linux.ibm.com - kjain@linux.ibm.com + "Cc\0farosas@linux.ibm.com" + pratik.r.sampat@gmail.com linuxppc-dev@lists.ozlabs.org kvm-ppc@vger.kernel.org - linux-kselftest@vger.kernel.org linux-kernel@vger.kernel.org - " pratik.r.sampat@gmail.com\0" + paulus@samba.org + linux-kselftest@vger.kernel.org + kjain@linux.ibm.com + " shuah@kernel.org\0" "\00:1\0" "b\0" "On Tue, Sep 28, 2021 at 05:21:01PM +0530, Pratik R. Sampat wrote:\n" @@ -271,7 +269,7 @@ "> +\tint ret = 0;\n" "> +\n" "> +\tt_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL);\n" - "> +\tif (t_buf = NULL)\n" + "> +\tif (t_buf == NULL)\n" "> +\t\treturn -ENOMEM;\n" "> +\n" "> +\tret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE,\n" @@ -311,7 +309,7 @@ "> +\tint ret = 0;\n" "> +\n" "> +\tt_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL);\n" - "> +\tif (t_buf = NULL)\n" + "> +\tif (t_buf == NULL)\n" "> +\t\treturn -ENOMEM;\n" "> +\n" "> +\tret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE,\n" @@ -357,7 +355,7 @@ "> +\tint ret = 0;\n" "> +\n" "> +\tt_buf = kmalloc(MAX_BUF_SZ, GFP_KERNEL);\n" - "> +\tif (t_buf = NULL)\n" + "> +\tif (t_buf == NULL)\n" "> +\t\treturn -ENOMEM;\n" "> +\n" "> +\tret = plpar_hcall_norets(H_GET_ENERGY_SCALE_INFO, ESI_FLAGS_SINGLE,\n" @@ -434,4 +432,4 @@ "\n" greg k-h -2fba94c4074ca70b6fa31009d2c914c5e1c44c9123146b65886240a7f5eb4f5f +eb215722872c979d13d7e460fbdf790e04d47abd56e27b482f93877bb400c048
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.