Displaying 1 result from an estimated 1 matches for "rmrru".
Did you mean:
rmrr
2012 Nov 28
2
[PATCH] VT-d: make scope parsing code type safe
...if ( dmaru->include_all )
{
@@ -590,7 +588,7 @@ acpi_parse_one_rmrr(struct acpi_dmar_hea
dev_scope_start = (void *)(rmrr + 1);
dev_scope_end = ((void *)rmrr) + header->length;
ret = acpi_parse_dev_scope(dev_scope_start, dev_scope_end,
- rmrru, RMRR_TYPE, rmrr->segment);
+ &rmrru->scope, RMRR_TYPE, rmrr->segment);
if ( ret || (rmrru->scope.devices_cnt == 0) )
xfree(rmrru);
@@ -683,7 +681,7 @@ acpi_parse_one_atsr(struct acpi_dmar_hea
dev_scope_start = (void *)(atsr + 1...