public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ACPI/tables: Correct the wrong count increasing
@ 2016-08-08 23:01 Baoquan He
  2016-08-08 23:27 ` kbuild test robot
  2016-08-09  0:30 ` [PATCH v2 " Baoquan He
  0 siblings, 2 replies; 6+ messages in thread
From: Baoquan He @ 2016-08-08 23:01 UTC (permalink / raw)
  To: linux-kernel; +Cc: Baoquan He, Rafael J. Wysocki, Len Brown, linux-acpi

The current code always increases the count in the 1st element of
array proc[].

Signed-off-by: Baoquan He <bhe@redhat.com>
Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
Cc: Len Brown <lenb@kernel.org>
Cc: linux-acpi@vger.kernel.org
---
 drivers/acpi/tables.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c
index 9f0ad6e..34d45bb 100644
--- a/drivers/acpi/tables.c
+++ b/drivers/acpi/tables.c
@@ -281,7 +281,7 @@ acpi_parse_entries_array(char *id, unsigned long table_size,
 			     proc[i].handler(entry, table_end))
 				return -EINVAL;
 
-			proc->count++;
+			proc[i]->count++;
 			break;
 		}
 		if (i != proc_num)
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] ACPI/tables: Correct the wrong count increasing
  2016-08-08 23:01 [PATCH 1/2] ACPI/tables: Correct the wrong count increasing Baoquan He
@ 2016-08-08 23:27 ` kbuild test robot
  2016-08-09  0:28   ` Baoquan He
  2016-08-09  0:30 ` [PATCH v2 " Baoquan He
  1 sibling, 1 reply; 6+ messages in thread
From: kbuild test robot @ 2016-08-08 23:27 UTC (permalink / raw)
  Cc: kbuild-all, linux-kernel, Baoquan He, Rafael J. Wysocki,
	Len Brown, linux-acpi

[-- Attachment #1: Type: text/plain, Size: 1327 bytes --]

Hi Baoquan,

[auto build test ERROR on pm/linux-next]
[also build test ERROR on v4.8-rc1 next-20160808]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Baoquan-He/ACPI-tables-Correct-the-wrong-count-increasing/20160809-070345
base:   https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git linux-next
config: x86_64-randconfig-x002-201632 (attached as .config)
compiler: gcc-6 (Debian 6.1.1-9) 6.1.1 20160705
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   drivers/acpi/tables.c: In function 'acpi_parse_entries_array':
>> drivers/acpi/tables.c:284:11: error: invalid type argument of '->' (have 'struct acpi_subtable_proc')
       proc[i]->count++;
              ^~

vim +284 drivers/acpi/tables.c

   278				if (entry->type != proc[i].id)
   279					continue;
   280				if (!proc[i].handler ||
   281				     proc[i].handler(entry, table_end))
   282					return -EINVAL;
   283	
 > 284				proc[i]->count++;
   285				break;
   286			}
   287			if (i != proc_num)

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 25801 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] ACPI/tables: Correct the wrong count increasing
  2016-08-08 23:27 ` kbuild test robot
@ 2016-08-09  0:28   ` Baoquan He
  0 siblings, 0 replies; 6+ messages in thread
From: Baoquan He @ 2016-08-09  0:28 UTC (permalink / raw)
  To: kbuild test robot
  Cc: kbuild-all, linux-kernel, Rafael J. Wysocki, Len Brown,
	linux-acpi

Sorry, I tested in another system, but forget updating code on my
laptop.

Will reply with a v2 post.

Sorry again about this mistake.



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH v2 1/2] ACPI/tables: Correct the wrong count increasing
  2016-08-08 23:01 [PATCH 1/2] ACPI/tables: Correct the wrong count increasing Baoquan He
  2016-08-08 23:27 ` kbuild test robot
@ 2016-08-09  0:30 ` Baoquan He
  2016-08-16  2:26   ` Zheng, Lv
  1 sibling, 1 reply; 6+ messages in thread
From: Baoquan He @ 2016-08-09  0:30 UTC (permalink / raw)
  To: linux-kernel; +Cc: Rafael J. Wysocki, Len Brown, linux-acpi

The current code always increases the count in the 1st element of
array proc[].

Signed-off-by: Baoquan He <bhe@redhat.com>
Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
Cc: Len Brown <lenb@kernel.org>
Cc: linux-acpi@vger.kernel.org
---

v1->v2:
    V1 is a wrong post because I didn't update the tested code to my
    local laptop. Repost with a correct v2.

 drivers/acpi/tables.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c
index 9f0ad6e..34d45bb 100644
--- a/drivers/acpi/tables.c
+++ b/drivers/acpi/tables.c
@@ -281,7 +281,7 @@ acpi_parse_entries_array(char *id, unsigned long table_size,
 			     proc[i].handler(entry, table_end))
 				return -EINVAL;
 
-			proc->count++;
+			proc[i].count++;
 			break;
 		}
 		if (i != proc_num)
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* RE: [PATCH v2 1/2] ACPI/tables: Correct the wrong count increasing
  2016-08-09  0:30 ` [PATCH v2 " Baoquan He
@ 2016-08-16  2:26   ` Zheng, Lv
  2016-08-16  8:21     ` Baoquan He
  0 siblings, 1 reply; 6+ messages in thread
From: Zheng, Lv @ 2016-08-16  2:26 UTC (permalink / raw)
  To: Baoquan He, linux-kernel@vger.kernel.org
  Cc: Rafael J. Wysocki, Len Brown, linux-acpi@vger.kernel.org

Hi,

> From: linux-acpi-owner@vger.kernel.org [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Baoquan
> He
> Subject: [PATCH v2 1/2] ACPI/tables: Correct the wrong count increasing
> 
> The current code always increases the count in the 1st element of
> array proc[].
> 
> Signed-off-by: Baoquan He <bhe@redhat.com>
> Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
> Cc: Len Brown <lenb@kernel.org>
> Cc: linux-acpi@vger.kernel.org
> ---
> 
> v1->v2:
>     V1 is a wrong post because I didn't update the tested code to my
>     local laptop. Repost with a correct v2.
> 
>  drivers/acpi/tables.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c
> index 9f0ad6e..34d45bb 100644
> --- a/drivers/acpi/tables.c
> +++ b/drivers/acpi/tables.c
> @@ -281,7 +281,7 @@ acpi_parse_entries_array(char *id, unsigned long table_size,
>  			     proc[i].handler(entry, table_end))
>  				return -EINVAL;
> 
> -			proc->count++;
> +			proc[i].count++;

Do we have code using acpi_subtable_proce.count?
I think the answer is yes because of:
[Patch] x86, ACPI: Fix the wrong assignment when Handle apic/x2apic entries

So why don't you put these 2 patches together into a single series?
And help to validate if there are problems in other acpi_subtable_proce.count users.

Thanks
Lv

>  			break;
>  		}
>  		if (i != proc_num)
> --
> 2.5.5
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 1/2] ACPI/tables: Correct the wrong count increasing
  2016-08-16  2:26   ` Zheng, Lv
@ 2016-08-16  8:21     ` Baoquan He
  0 siblings, 0 replies; 6+ messages in thread
From: Baoquan He @ 2016-08-16  8:21 UTC (permalink / raw)
  To: Zheng, Lv
  Cc: linux-kernel@vger.kernel.org, Rafael J. Wysocki, Len Brown,
	linux-acpi@vger.kernel.org

On 08/16/16 at 02:26am, Zheng, Lv wrote:
> Hi,
> 
> > From: linux-acpi-owner@vger.kernel.org [mailto:linux-acpi-owner@vger.kernel.org] On Behalf Of Baoquan
> > diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c
> > index 9f0ad6e..34d45bb 100644
> > --- a/drivers/acpi/tables.c
> > +++ b/drivers/acpi/tables.c
> > @@ -281,7 +281,7 @@ acpi_parse_entries_array(char *id, unsigned long table_size,
> >  			     proc[i].handler(entry, table_end))
> >  				return -EINVAL;
> > 
> > -			proc->count++;
> > +			proc[i].count++;
> 
> Do we have code using acpi_subtable_proce.count?
> I think the answer is yes because of:
> [Patch] x86, ACPI: Fix the wrong assignment when Handle apic/x2apic entries
> 
> So why don't you put these 2 patches together into a single series?
> And help to validate if there are problems in other acpi_subtable_proce.count users.

Thanks for comments. I hesitated to put them into one patch or two
patches when I post. Later I decided to post them in two patches because
they are in two components, one is x86, the other is ACPI. And though
very simple fix I worry they can't be described well in one patch log.

Anyway, change related to patch 1/2 had been included in Al Stone's
patchset posted earlier. So this one has to be NACKed.

> 
> Thanks
> Lv
> 
> >  			break;
> >  		}
> >  		if (i != proc_num)
> > --
> > 2.5.5
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-08-16  8:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-08 23:01 [PATCH 1/2] ACPI/tables: Correct the wrong count increasing Baoquan He
2016-08-08 23:27 ` kbuild test robot
2016-08-09  0:28   ` Baoquan He
2016-08-09  0:30 ` [PATCH v2 " Baoquan He
2016-08-16  2:26   ` Zheng, Lv
2016-08-16  8:21     ` Baoquan He

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox