Changeset 58466 in vbox for trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Udp6Dxe
- Timestamp:
- Oct 29, 2015 4:30:44 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103777
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
- Property svn:mergeinfo changed
/vendor/edk2/current merged: 103769-103776
- Property svn:mergeinfo changed
-
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Udp6Dxe/ComponentName.c
r58459 r58466 238 238 @param Udp6[in] A pointer to the EFI_UDP6_PROTOCOL. 239 239 240 240 241 241 @retval EFI_SUCCESS Update the ControllerNameTable of this instance successfully. 242 242 @retval EFI_INVALID_PARAMETER The input parameter is invalid. 243 243 244 244 **/ 245 245 EFI_STATUS -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Udp6Dxe/Udp6Driver.c
r58459 r58466 179 179 /** 180 180 Callback function which provided by user to remove one node in NetDestroyLinkList process. 181 181 182 182 @param[in] Entry The entry to be removed. 183 183 @param[in] Context Pointer to the callback context corresponds to the Context in NetDestroyLinkList. … … 297 297 NULL 298 298 ); 299 299 300 300 Udp6CleanService (Udp6Service); 301 301 … … 409 409 goto ON_ERROR; 410 410 } 411 411 412 412 OldTpl = gBS->RaiseTPL (TPL_CALLBACK); 413 413 -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Udp6Dxe/Udp6Dxe.inf
r58459 r58466 1 1 ## @file Udp6Dxe.inf 2 2 # UDP packet service based on IPv6 stack. 3 # 3 # 4 4 # This module produces EFI UDPv6 Protocol which provides simple packet-oriented 5 5 # services to transmit and receive UDP packets. 6 # 6 # 7 7 # Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR> 8 8 # -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Udp6Dxe/Udp6Impl.c
r58459 r58466 365 365 IpIoDestroy (Udp6Service->IpIo); 366 366 Udp6Service->IpIo = NULL; 367 367 368 368 return Status; 369 369 } … … 391 391 IpIoDestroy (Udp6Service->IpIo); 392 392 Udp6Service->IpIo = NULL; 393 393 394 394 ZeroMem (Udp6Service, sizeof (UDP6_SERVICE_DATA)); 395 395 } … … 1932 1932 ) 1933 1933 { 1934 } 1934 } 1935 1935 1936 1936 /** -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Udp6Dxe/Udp6Impl.h
r58459 r58466 145 145 IN EFI_HANDLE ControllerHandle 146 146 ); 147 147 148 148 /** 149 149 This function cleans the udp instance. … … 156 156 IN OUT UDP6_INSTANCE_DATA *Instance 157 157 ); 158 158 159 159 /** 160 160 This function intializes the new created udp instance. -
trunk/src/VBox/Devices/EFI/Firmware/NetworkPkg/Udp6Dxe/Udp6Main.c
r58459 r58466 285 285 ASSERT (IsListEmpty (&Instance->DeliveredDgramQue)); 286 286 } 287 287 288 288 ON_EXIT: 289 289
Note:
See TracChangeset
for help on using the changeset viewer.