Changeset 108794 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/ArmPkg/Drivers/CpuDxe/MemoryAttribute.c
- Timestamp:
- Mar 31, 2025 11:31:09 AM (2 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168237
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-164365 /vendor/edk2/current 103735-103757,103769-103776,129194-168232
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/ArmPkg/Drivers/CpuDxe/MemoryAttribute.c
r101291 r108794 83 83 84 84 if ((Length == 0) || (Attributes == NULL)) { 85 DEBUG (( 86 DEBUG_ERROR, 87 "%a: BaseAddress 0x%llx Length 0x%llx is zero or Attributes is NULL\n", 88 __func__, 89 BaseAddress, 90 Length 91 )); 85 92 return EFI_INVALID_PARAMETER; 86 93 } … … 196 203 ((Attributes & ~(EFI_MEMORY_RO | EFI_MEMORY_RP | EFI_MEMORY_XP)) != 0)) 197 204 { 205 DEBUG (( 206 DEBUG_ERROR, 207 "%a: BaseAddress 0x%llx Length is zero or Attributes (0x%llx) is invalid\n", 208 __func__, 209 BaseAddress, 210 Attributes 211 )); 198 212 return EFI_INVALID_PARAMETER; 199 213 } … … 257 271 ((Attributes & ~(EFI_MEMORY_RO | EFI_MEMORY_RP | EFI_MEMORY_XP)) != 0)) 258 272 { 273 DEBUG (( 274 DEBUG_ERROR, 275 "%a: BaseAddress 0x%llx Length is zero or Attributes (0x%llx) is invalid\n", 276 __func__, 277 BaseAddress, 278 Attributes 279 )); 259 280 return EFI_INVALID_PARAMETER; 260 281 }
Note:
See TracChangeset
for help on using the changeset viewer.