Changeset 77696 in vbox for trunk/src/VBox
- Timestamp:
- Mar 13, 2019 10:11:52 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew/VBoxPkg/VBoxFsDxe/fsw_efi.c
r77672 r77696 230 230 231 231 // first, open DiskIO 232 VBoxLogFlowFuncEnter();233 234 232 Status = BS->OpenProtocol(ControllerHandle, 235 233 &PROTO_NAME(DiskIoProtocol), … … 240 238 if (EFI_ERROR(Status)) 241 239 { 242 VBoxLogFlowFuncLeaveRC(Status);243 240 return Status; 244 241 } … … 257 254 ControllerHandle, 258 255 EFI_OPEN_PROTOCOL_TEST_PROTOCOL); 259 VBoxLogFlowFuncLeaveRC(Status);260 256 return Status; 261 257 } … … 267 263 { 268 264 EFI_STATUS Status; 269 VBoxLogFlowFuncEnter();270 265 pVolume->Signature = FSW_VOLUME_DATA_SIGNATURE; 271 266 pVolume->Handle = ControllerHandle; … … 279 274 pVolume); 280 275 281 VBoxLogFlowFuncMarkRC(Status);282 276 if (!EFI_ERROR(Status)) { 283 277 // register the SimpleFileSystem protocol … … 292 286 #endif 293 287 } 294 VBoxLogFlowFuncLeaveRC(Status);295 288 return Status; 296 289 } … … 318 311 FSW_VOLUME_DATA *Volume; 319 312 320 VBoxLogFlowFuncEnter();321 313 // open consumed protocols 322 314 Status = BS->OpenProtocol(ControllerHandle, … … 327 319 EFI_OPEN_PROTOCOL_GET_PROTOCOL); // NOTE: we only want to look at the MediaId 328 320 if (EFI_ERROR(Status)) { 329 VBoxLogFlowFuncLeaveRC(Status);330 321 return Status; 331 322 } … … 338 329 EFI_OPEN_PROTOCOL_BY_DRIVER); 339 330 if (EFI_ERROR(Status)) { 340 VBoxLogFlowFuncLeaveRC(Status);341 331 return Status; 342 332 } … … 363 353 } 364 354 365 VBoxLogFlowFuncLeaveRC(Status);366 355 return Status; 367 356 }
Note:
See TracChangeset
for help on using the changeset viewer.