ACPI / tables: do not report the number of entries ignored by acpi_parse_entries()
authorAl Stone <ahs3@redhat.com>
Sat, 20 Aug 2016 00:48:13 +0000 (18:48 -0600)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 30 Aug 2016 23:37:15 +0000 (01:37 +0200)
commit99b0efd7c886f4c985cb2727a86548413922cbe2
tree71032c019e78b77f001166026f220eb9fb439d18
parent8726d4f441505def8a488d50e50568403f6ad191
ACPI / tables: do not report the number of entries ignored by acpi_parse_entries()

The function acpi_parse_entries_array() has a limiting parameter,
max_entries, which tells the function to stop looking at subtables
once that limit has been reached.  If the limit is reached, it is
reported.  However, the logic is incorrect in that the loop to
examine all subtables will always report that zero subtables have
been ignored since it does not continue once the max_entries have
been reached.

One approach to fixing this would be to correct the logic so that
all subtables are examined, even if we have hit the max_entries, but
without executing all the callback functions.  This could be risky
since we cannot guarantee that no callback will ever have side effects
that another callback depends on to work correctly.

So, the simplest approach is to just remove the part of the error
message that will always be incorrect.

Signed-off-by: Al Stone <ahs3@redhat.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/tables.c