- Increase the size of the ID buffers to fit certain non-standard IDs reported by Hyper-V on Windows 8. These should be allocated from pool, but this code really sucks and should be replaced anyway.
- Fixes buffer overflow causing a bug check during boot on Hyper-V

svn path=/trunk/; revision=57067
This commit is contained in:
Cameron Gutman 2012-08-13 07:00:32 +00:00
parent 307df8d456
commit 59de552e2a

View file

@ -164,10 +164,10 @@ struct acpi_device_flags {
/* Plug and Play */
typedef char acpi_bus_id[8];
typedef char acpi_bus_id[20];
typedef unsigned long acpi_bus_address;
typedef char acpi_hardware_id[9];
typedef char acpi_unique_id[9];
typedef char acpi_hardware_id[20];
typedef char acpi_unique_id[20];
typedef char acpi_device_name[40];
typedef char acpi_device_class[20];