Make use of correct format String:

1) UINT64 should use %lx
2) POINTER type should use %p
3) EFI_STATUS should use %r


git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6253 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12 2008-10-27 10:13:00 +00:00
parent 13c310654c
commit 0e549d5be5
13 changed files with 70 additions and 70 deletions

View File

@ -1595,7 +1595,7 @@ EhcDriverBindingStart (
); );
DEBUG ((EFI_D_INFO, "EhcDriverBindingStart: EHCI started for controller @ %x\n", Controller)); DEBUG ((EFI_D_INFO, "EhcDriverBindingStart: EHCI started for controller @ %p\n", Controller));
return EFI_SUCCESS; return EFI_SUCCESS;
UNINSTALL_USBHC: UNINSTALL_USBHC:

View File

@ -145,7 +145,7 @@ EhcDumpQh (
DEBUG ((EFI_D_INFO, Msg)); DEBUG ((EFI_D_INFO, Msg));
} }
DEBUG ((EFI_D_INFO, "Queue head @ 0x%x, interval %d, next qh %x\n", DEBUG ((EFI_D_INFO, "Queue head @ 0x%p, interval %d, next qh %x\n",
Qh, Qh->Interval, Qh->NextQh)); Qh, Qh->Interval, Qh->NextQh));
QhHw = &Qh->QhHw; QhHw = &Qh->QhHw;

View File

@ -994,7 +994,7 @@ UsbBusBuildProtocol (
UsbBus->Devices[0] = RootHub; UsbBus->Devices[0] = RootHub;
DEBUG ((EFI_D_INFO, "UsbBusStart: usb bus started on %x, root hub %x\n", Controller, RootIf)); DEBUG ((EFI_D_INFO, "UsbBusStart: usb bus started on %p, root hub %p\n", Controller, RootIf));
return EFI_SUCCESS; return EFI_SUCCESS;
FREE_ROOTHUB: FREE_ROOTHUB:
@ -1355,7 +1355,7 @@ UsbBusControllerDriverStop (
return EFI_SUCCESS; return EFI_SUCCESS;
} }
DEBUG (( EFI_D_INFO, "UsbBusStop: usb bus stopped on %x\n", Controller)); DEBUG (( EFI_D_INFO, "UsbBusStop: usb bus stopped on %p\n", Controller));
// //
// Locate USB_BUS for the current host controller // Locate USB_BUS for the current host controller

View File

@ -983,7 +983,7 @@ UsbRootHubInit (
return Status; return Status;
} }
DEBUG (( EFI_D_INFO, "UsbRootHubInit: root hub %x - max speed %d, %d ports\n", DEBUG (( EFI_D_INFO, "UsbRootHubInit: root hub %p - max speed %d, %d ports\n",
HubIf, MaxSpeed, NumOfPort)); HubIf, MaxSpeed, NumOfPort));
HubIf->IsHub = TRUE; HubIf->IsHub = TRUE;
@ -1274,7 +1274,7 @@ UsbRootHubRelease (
IN USB_INTERFACE *HubIf IN USB_INTERFACE *HubIf
) )
{ {
DEBUG (( EFI_D_INFO, "UsbRootHubRelease: root hub released for hub %x\n", HubIf)); DEBUG (( EFI_D_INFO, "UsbRootHubRelease: root hub released for hub %p\n", HubIf));
gBS->SetTimer (HubIf->HubNotify, TimerCancel, USB_ROOTHUB_POLL_INTERVAL); gBS->SetTimer (HubIf->HubNotify, TimerCancel, USB_ROOTHUB_POLL_INTERVAL);
gBS->CloseEvent (HubIf->HubNotify); gBS->CloseEvent (HubIf->HubNotify);

View File

@ -1197,7 +1197,7 @@ CoreStartImage (
DEBUG_CODE_BEGIN (); DEBUG_CODE_BEGIN ();
if (Image->ExitDataSize != 0 || Image->ExitData != NULL) { if (Image->ExitDataSize != 0 || Image->ExitData != NULL) {
DEBUG ((DEBUG_LOAD, "StartImage: ExitDataSize %d, ExitData %x", Image->ExitDataSize, Image->ExitData)); DEBUG ((DEBUG_LOAD, "StartImage: ExitDataSize %d, ExitData %p", Image->ExitDataSize, Image->ExitData));
if (Image->ExitData != NULL) { if (Image->ExitData != NULL) {
DEBUG ((DEBUG_LOAD, " (%hs)", Image->ExitData)); DEBUG ((DEBUG_LOAD, " (%hs)", Image->ExitData));
} }

View File

@ -162,7 +162,7 @@ PeiInstallPpi (
// //
if ((PpiList->Flags & EFI_PEI_PPI_DESCRIPTOR_PPI) == 0) { if ((PpiList->Flags & EFI_PEI_PPI_DESCRIPTOR_PPI) == 0) {
PrivateData->PpiData.PpiListEnd = LastCallbackInstall; PrivateData->PpiData.PpiListEnd = LastCallbackInstall;
DEBUG((EFI_D_ERROR, "ERROR -> InstallPpi: %g %x\n", PpiList->Guid, PpiList->Ppi)); DEBUG((EFI_D_ERROR, "ERROR -> InstallPpi: %g %p\n", PpiList->Guid, PpiList->Ppi));
return EFI_INVALID_PARAMETER; return EFI_INVALID_PARAMETER;
} }
@ -401,7 +401,7 @@ PeiNotifyPpi (
// //
if ((NotifyList->Flags & EFI_PEI_PPI_DESCRIPTOR_NOTIFY_TYPES) == 0) { if ((NotifyList->Flags & EFI_PEI_PPI_DESCRIPTOR_NOTIFY_TYPES) == 0) {
PrivateData->PpiData.NotifyListEnd = LastCallbackNotify; PrivateData->PpiData.NotifyListEnd = LastCallbackNotify;
DEBUG((EFI_D_ERROR, "ERROR -> InstallNotify: %g %x\n", NotifyList->Guid, NotifyList->Notify)); DEBUG((EFI_D_ERROR, "ERROR -> InstallNotify: %g %p\n", NotifyList->Guid, NotifyList->Notify));
return EFI_INVALID_PARAMETER; return EFI_INVALID_PARAMETER;
} }
@ -569,7 +569,7 @@ DispatchNotify (
(((INT32 *)SearchGuid)[1] == ((INT32 *)CheckGuid)[1]) && (((INT32 *)SearchGuid)[1] == ((INT32 *)CheckGuid)[1]) &&
(((INT32 *)SearchGuid)[2] == ((INT32 *)CheckGuid)[2]) && (((INT32 *)SearchGuid)[2] == ((INT32 *)CheckGuid)[2]) &&
(((INT32 *)SearchGuid)[3] == ((INT32 *)CheckGuid)[3])) { (((INT32 *)SearchGuid)[3] == ((INT32 *)CheckGuid)[3])) {
DEBUG ((EFI_D_INFO, "Notify: PPI Guid: %g, Peim notify entry point: %x\n", DEBUG ((EFI_D_INFO, "Notify: PPI Guid: %g, Peim notify entry point: %p\n",
SearchGuid, SearchGuid,
NotifyDescriptor->Notify NotifyDescriptor->Notify
)); ));

View File

@ -1329,7 +1329,7 @@ LoadFile (
// //
// The following line is only used for passing ICC build. // The following line is only used for passing ICC build.
// //
DEBUG ((EFI_D_INFO, "FilePath = %x\n", FilePath)); DEBUG ((EFI_D_INFO, "FilePath = %p\n", FilePath));
// //
// //

View File

@ -221,7 +221,7 @@ del_v2p (
FreePool (v); FreePool (v);
if (Status) { if (Status) {
DEBUG ((EFI_D_ERROR, "Unmap failed with status = %x\n", Status)); DEBUG ((EFI_D_ERROR, "Unmap failed with status = %r\n", Status));
} }
return Status; return Status;
} }
@ -233,7 +233,7 @@ del_v2p (
FreePool (t); FreePool (t);
if (Status) { if (Status) {
DEBUG ((EFI_D_ERROR, "Unmap failed with status = %x\n", Status)); DEBUG ((EFI_D_ERROR, "Unmap failed with status = %r\n", Status));
} }
return Status; return Status;
} }
@ -353,12 +353,12 @@ SimpleNetworkDriverSupported (
if (EFI_ERROR (Status)) { if (EFI_ERROR (Status)) {
if (Status == EFI_ALREADY_STARTED) { if (Status == EFI_ALREADY_STARTED) {
DEBUG ((EFI_D_INFO, "Support(): Already Started. on handle %x\n", Controller)); DEBUG ((EFI_D_INFO, "Support(): Already Started. on handle %p\n", Controller));
} }
return Status; return Status;
} }
DEBUG ((EFI_D_INFO, "Support(): UNDI3.1 found on handle %x\n", Controller)); DEBUG ((EFI_D_INFO, "Support(): UNDI3.1 found on handle %p\n", Controller));
// //
// check the version, we don't want to connect to the undi16 // check the version, we don't want to connect to the undi16
@ -422,7 +422,7 @@ SimpleNetworkDriverSupported (
} }
Status = EFI_SUCCESS; Status = EFI_SUCCESS;
DEBUG ((EFI_D_INFO, "Support(): supported on %x\n", Controller)); DEBUG ((EFI_D_INFO, "Support(): supported on %p\n", Controller));
Done: Done:
gBS->CloseProtocol ( gBS->CloseProtocol (

View File

@ -188,9 +188,9 @@ pxe_transmit (
// //
DEBUG ((EFI_D_NET, "\nsnp->undi.transmit() ")); DEBUG ((EFI_D_NET, "\nsnp->undi.transmit() "));
DEBUG ((EFI_D_NET, "\nsnp->cdb.OpCode == %x", snp->cdb.OpCode)); DEBUG ((EFI_D_NET, "\nsnp->cdb.OpCode == %x", snp->cdb.OpCode));
DEBUG ((EFI_D_NET, "\nsnp->cdb.CPBaddr == %X", snp->cdb.CPBaddr)); DEBUG ((EFI_D_NET, "\nsnp->cdb.CPBaddr == %LX", snp->cdb.CPBaddr));
DEBUG ((EFI_D_NET, "\nsnp->cdb.DBaddr == %X", snp->cdb.DBaddr)); DEBUG ((EFI_D_NET, "\nsnp->cdb.DBaddr == %LX", snp->cdb.DBaddr));
DEBUG ((EFI_D_NET, "\ncpb->FrameAddr == %X\n", cpb->FrameAddr)); DEBUG ((EFI_D_NET, "\ncpb->FrameAddr == %LX\n", cpb->FrameAddr));
(*snp->issue_undi32_command) ((UINT64) (UINTN) &snp->cdb); (*snp->issue_undi32_command) ((UINT64) (UINTN) &snp->cdb);

View File

@ -85,7 +85,7 @@ TcpFastRecover (
Tcb->CWnd = Tcb->Ssthresh + 3 * Tcb->SndMss; Tcb->CWnd = Tcb->Ssthresh + 3 * Tcb->SndMss;
DEBUG ((EFI_D_INFO, "TcpFastRecover: enter fast retransmission" DEBUG ((EFI_D_INFO, "TcpFastRecover: enter fast retransmission"
" for TCB %x, recover point is %d\n", Tcb, Tcb->Recover)); " for TCB %p, recover point is %d\n", Tcb, Tcb->Recover));
return; return;
} }
@ -104,7 +104,7 @@ TcpFastRecover (
// //
Tcb->CWnd += Tcb->SndMss; Tcb->CWnd += Tcb->SndMss;
DEBUG ((EFI_D_INFO, "TcpFastRecover: received another" DEBUG ((EFI_D_INFO, "TcpFastRecover: received another"
" duplicated ACK (%d) for TCB %x\n", Seg->Ack, Tcb)); " duplicated ACK (%d) for TCB %p\n", Seg->Ack, Tcb));
} else { } else {
@ -124,7 +124,7 @@ TcpFastRecover (
Tcb->CongestState = TCP_CONGEST_OPEN; Tcb->CongestState = TCP_CONGEST_OPEN;
DEBUG ((EFI_D_INFO, "TcpFastRecover: received a full ACK(%d)" DEBUG ((EFI_D_INFO, "TcpFastRecover: received a full ACK(%d)"
" for TCB %x, exit fast recovery\n", Seg->Ack, Tcb)); " for TCB %p, exit fast recovery\n", Seg->Ack, Tcb));
} else { } else {
@ -149,7 +149,7 @@ TcpFastRecover (
Tcb->CWnd -= Acked; Tcb->CWnd -= Acked;
DEBUG ((EFI_D_INFO, "TcpFastRecover: received a partial" DEBUG ((EFI_D_INFO, "TcpFastRecover: received a partial"
" ACK(%d) for TCB %x\n", Seg->Ack, Tcb)); " ACK(%d) for TCB %p\n", Seg->Ack, Tcb));
} }
} }
@ -186,7 +186,7 @@ TcpFastLossRecover (
Tcb->CongestState = TCP_CONGEST_OPEN; Tcb->CongestState = TCP_CONGEST_OPEN;
DEBUG ((EFI_D_INFO, "TcpFastLossRecover: received a " DEBUG ((EFI_D_INFO, "TcpFastLossRecover: received a "
"full ACK(%d) for TCB %x\n", Seg->Ack, Tcb)); "full ACK(%d) for TCB %p\n", Seg->Ack, Tcb));
} else { } else {
@ -196,7 +196,7 @@ TcpFastLossRecover (
// //
TcpRetransmit (Tcb, Seg->Ack); TcpRetransmit (Tcb, Seg->Ack);
DEBUG ((EFI_D_INFO, "TcpFastLossRecover: received a " DEBUG ((EFI_D_INFO, "TcpFastLossRecover: received a "
"partial ACK(%d) for TCB %x\n", Seg->Ack, Tcb)); "partial ACK(%d) for TCB %p\n", Seg->Ack, Tcb));
} }
} }
} }
@ -256,7 +256,7 @@ TcpComputeRtt (
} }
DEBUG ((EFI_D_INFO, "TcpComputeRtt: new RTT for TCB %x" DEBUG ((EFI_D_INFO, "TcpComputeRtt: new RTT for TCB %p"
" computed SRTT: %d RTTVAR: %d RTO: %d\n", " computed SRTT: %d RTTVAR: %d RTO: %d\n",
Tcb, Tcb->SRtt, Tcb->RttVar, Tcb->Rto)); Tcb, Tcb->SRtt, Tcb->RttVar, Tcb->Rto));
@ -443,14 +443,14 @@ TcpDeliverData (
// //
if (!IsListEmpty (&Tcb->RcvQue)) { if (!IsListEmpty (&Tcb->RcvQue)) {
DEBUG ((EFI_D_ERROR, "TcpDeliverData: data received after" DEBUG ((EFI_D_ERROR, "TcpDeliverData: data received after"
" FIN from peer of TCB %x, reset connection\n", Tcb)); " FIN from peer of TCB %p, reset connection\n", Tcb));
NetbufFree (Nbuf); NetbufFree (Nbuf);
return -1; return -1;
} }
DEBUG ((EFI_D_INFO, "TcpDeliverData: processing FIN " DEBUG ((EFI_D_INFO, "TcpDeliverData: processing FIN "
"from peer of TCB %x\n", Tcb)); "from peer of TCB %p\n", Tcb));
switch (Tcb->State) { switch (Tcb->State) {
case TCP_SYN_RCVD: case TCP_SYN_RCVD:
@ -481,7 +481,7 @@ TcpDeliverData (
} else { } else {
DEBUG ((EFI_D_WARN, "Connection closed immediately " DEBUG ((EFI_D_WARN, "Connection closed immediately "
"because app disables TIME_WAIT timer for %x\n", Tcb)); "because app disables TIME_WAIT timer for %p\n", Tcb));
TcpSendAck (Tcb); TcpSendAck (Tcb);
TcpClose (Tcb); TcpClose (Tcb);
@ -773,7 +773,7 @@ TcpInput (
// //
if (TcpParseOption (Nbuf->Tcp, &Option) == -1) { if (TcpParseOption (Nbuf->Tcp, &Option) == -1) {
DEBUG ((EFI_D_ERROR, "TcpInput: reset the peer because" DEBUG ((EFI_D_ERROR, "TcpInput: reset the peer because"
" of mal-format option for Tcb %x\n", Tcb)); " of mal-format option for Tcb %p\n", Tcb));
goto SEND_RESET; goto SEND_RESET;
} }
@ -797,7 +797,7 @@ TcpInput (
// //
if (TCP_FLG_ON (Seg->Flag, TCP_FLG_RST)) { if (TCP_FLG_ON (Seg->Flag, TCP_FLG_RST)) {
DEBUG ((EFI_D_WARN, "TcpInput: discard a reset segment " DEBUG ((EFI_D_WARN, "TcpInput: discard a reset segment "
"for TCB %x in listening\n", Tcb)); "for TCB %p in listening\n", Tcb));
goto DISCARD; goto DISCARD;
} }
@ -808,7 +808,7 @@ TcpInput (
// //
if (TCP_FLG_ON (Seg->Flag, TCP_FLG_ACK)) { if (TCP_FLG_ON (Seg->Flag, TCP_FLG_ACK)) {
DEBUG ((EFI_D_WARN, "TcpInput: send reset because of" DEBUG ((EFI_D_WARN, "TcpInput: send reset because of"
" segment with ACK for TCB %x in listening\n", Tcb)); " segment with ACK for TCB %p in listening\n", Tcb));
goto SEND_RESET; goto SEND_RESET;
} }
@ -830,7 +830,7 @@ TcpInput (
goto DISCARD; goto DISCARD;
} }
DEBUG ((EFI_D_INFO, "TcpInput: create a child for TCB %x" DEBUG ((EFI_D_INFO, "TcpInput: create a child for TCB %p"
" in listening\n", Tcb)); " in listening\n", Tcb));
// //
@ -860,7 +860,7 @@ TcpInput (
if (TCP_FLG_ON (Seg->Flag, TCP_FLG_ACK) && (Seg->Ack != Tcb->Iss + 1)) { if (TCP_FLG_ON (Seg->Flag, TCP_FLG_ACK) && (Seg->Ack != Tcb->Iss + 1)) {
DEBUG ((EFI_D_WARN, "TcpInput: send reset because of " DEBUG ((EFI_D_WARN, "TcpInput: send reset because of "
"wrong ACK received for TCB %x in SYN_SENT\n", Tcb)); "wrong ACK received for TCB %p in SYN_SENT\n", Tcb));
goto SEND_RESET; goto SEND_RESET;
} }
@ -923,7 +923,7 @@ TcpInput (
TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW); TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW);
DEBUG ((EFI_D_INFO, "TcpInput: connection established" DEBUG ((EFI_D_INFO, "TcpInput: connection established"
" for TCB %x in SYN_SENT\n", Tcb)); " for TCB %p in SYN_SENT\n", Tcb));
goto StepSix; goto StepSix;
} else { } else {
@ -938,7 +938,7 @@ TcpInput (
TcpTrimInWnd (Tcb, Nbuf); TcpTrimInWnd (Tcb, Nbuf);
DEBUG ((EFI_D_WARN, "TcpInput: simultanous open " DEBUG ((EFI_D_WARN, "TcpInput: simultanous open "
"for TCB %x in SYN_SENT\n", Tcb)); "for TCB %p in SYN_SENT\n", Tcb));
goto StepSix; goto StepSix;
} }
@ -956,7 +956,7 @@ TcpInput (
// //
if (!TcpSeqAcceptable (Tcb, Seg)) { if (!TcpSeqAcceptable (Tcb, Seg)) {
DEBUG ((EFI_D_WARN, "TcpInput: sequence acceptance" DEBUG ((EFI_D_WARN, "TcpInput: sequence acceptance"
" test failed for segment of TCB %x\n", Tcb)); " test failed for segment of TCB %p\n", Tcb));
if (!TCP_FLG_ON (Seg->Flag, TCP_FLG_RST)) { if (!TCP_FLG_ON (Seg->Flag, TCP_FLG_RST)) {
TcpSendAck (Tcb); TcpSendAck (Tcb);
@ -977,7 +977,7 @@ TcpInput (
// //
if (TCP_FLG_ON (Seg->Flag, TCP_FLG_RST)) { if (TCP_FLG_ON (Seg->Flag, TCP_FLG_RST)) {
DEBUG ((EFI_D_WARN, "TcpInput: connection reset for TCB %x\n", Tcb)); DEBUG ((EFI_D_WARN, "TcpInput: connection reset for TCB %p\n", Tcb));
if (Tcb->State == TCP_SYN_RCVD) { if (Tcb->State == TCP_SYN_RCVD) {
@ -1021,7 +1021,7 @@ TcpInput (
if (TCP_FLG_ON (Seg->Flag, TCP_FLG_SYN)) { if (TCP_FLG_ON (Seg->Flag, TCP_FLG_SYN)) {
DEBUG ((EFI_D_WARN, "TcpInput: connection reset " DEBUG ((EFI_D_WARN, "TcpInput: connection reset "
"because received extra SYN for TCB %x\n", Tcb)); "because received extra SYN for TCB %p\n", Tcb));
SOCK_ERROR (Tcb->Sk, EFI_CONNECTION_RESET); SOCK_ERROR (Tcb->Sk, EFI_CONNECTION_RESET);
goto RESET_THEN_DROP; goto RESET_THEN_DROP;
@ -1032,7 +1032,7 @@ TcpInput (
// //
if (!TCP_FLG_ON (Seg->Flag, TCP_FLG_ACK)) { if (!TCP_FLG_ON (Seg->Flag, TCP_FLG_ACK)) {
DEBUG ((EFI_D_WARN, "TcpInput: segment discard because" DEBUG ((EFI_D_WARN, "TcpInput: segment discard because"
" of no ACK for connected TCB %x\n", Tcb)); " of no ACK for connected TCB %p\n", Tcb));
goto DISCARD; goto DISCARD;
@ -1053,14 +1053,14 @@ TcpInput (
TcpDeliverData (Tcb); TcpDeliverData (Tcb);
DEBUG ((EFI_D_INFO, "TcpInput: connection established " DEBUG ((EFI_D_INFO, "TcpInput: connection established "
" for TCB %x in SYN_RCVD\n", Tcb)); " for TCB %p in SYN_RCVD\n", Tcb));
// //
// Continue the process as ESTABLISHED state // Continue the process as ESTABLISHED state
// //
} else { } else {
DEBUG ((EFI_D_WARN, "TcpInput: send reset because of" DEBUG ((EFI_D_WARN, "TcpInput: send reset because of"
" wrong ACK for TCB %x in SYN_RCVD\n", Tcb)); " wrong ACK for TCB %p in SYN_RCVD\n", Tcb));
goto SEND_RESET; goto SEND_RESET;
} }
@ -1069,14 +1069,14 @@ TcpInput (
if (TCP_SEQ_LT (Seg->Ack, Tcb->SndUna)) { if (TCP_SEQ_LT (Seg->Ack, Tcb->SndUna)) {
DEBUG ((EFI_D_WARN, "TcpInput: ignore the out-of-data" DEBUG ((EFI_D_WARN, "TcpInput: ignore the out-of-data"
" ACK for connected TCB %x\n", Tcb)); " ACK for connected TCB %p\n", Tcb));
goto StepSix; goto StepSix;
} else if (TCP_SEQ_GT (Seg->Ack, Tcb->SndNxt)) { } else if (TCP_SEQ_GT (Seg->Ack, Tcb->SndNxt)) {
DEBUG ((EFI_D_WARN, "TcpInput: discard segment for " DEBUG ((EFI_D_WARN, "TcpInput: discard segment for "
"future ACK for connected TCB %x\n", Tcb)); "future ACK for connected TCB %p\n", Tcb));
TcpSendAck (Tcb); TcpSendAck (Tcb);
goto DISCARD; goto DISCARD;
@ -1187,7 +1187,7 @@ TcpInput (
} }
DEBUG ((EFI_D_WARN, "TcpInput: peer shrinks the" DEBUG ((EFI_D_WARN, "TcpInput: peer shrinks the"
" window for connected TCB %x\n", Tcb)); " window for connected TCB %p\n", Tcb));
if ((Tcb->CongestState == TCP_CONGEST_RECOVER) && if ((Tcb->CongestState == TCP_CONGEST_RECOVER) &&
(TCP_SEQ_LT (Right, Tcb->Recover))) { (TCP_SEQ_LT (Right, Tcb->Recover))) {
@ -1225,7 +1225,7 @@ NO_UPDATE:
(Tcb->SndUna == Tcb->SndNxt)) { (Tcb->SndUna == Tcb->SndNxt)) {
DEBUG ((EFI_D_INFO, "TcpInput: local FIN is ACKed by" DEBUG ((EFI_D_INFO, "TcpInput: local FIN is ACKed by"
" peer for connected TCB %x\n", Tcb)); " peer for connected TCB %p\n", Tcb));
TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_FIN_ACKED); TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_FIN_ACKED);
} }
@ -1265,7 +1265,7 @@ NO_UPDATE:
} else { } else {
DEBUG ((EFI_D_WARN, "Connection closed immediately " DEBUG ((EFI_D_WARN, "Connection closed immediately "
"because app disables TIME_WAIT timer for %x\n", Tcb)); "because app disables TIME_WAIT timer for %p\n", Tcb));
TcpClose (Tcb); TcpClose (Tcb);
} }
@ -1291,7 +1291,7 @@ NO_UPDATE:
} else { } else {
DEBUG ((EFI_D_WARN, "Connection closed immediately " DEBUG ((EFI_D_WARN, "Connection closed immediately "
"because app disables TIME_WAIT timer for %x\n", Tcb)); "because app disables TIME_WAIT timer for %p\n", Tcb));
TcpClose (Tcb); TcpClose (Tcb);
} }
@ -1316,7 +1316,7 @@ StepSix:
!TCP_FIN_RCVD (Tcb->State)) { !TCP_FIN_RCVD (Tcb->State)) {
DEBUG ((EFI_D_INFO, "TcpInput: received urgent data " DEBUG ((EFI_D_INFO, "TcpInput: received urgent data "
"from peer for connected TCB %x\n", Tcb)); "from peer for connected TCB %p\n", Tcb));
Urg = Seg->Seq + Seg->Urg; Urg = Seg->Seq + Seg->Urg;
@ -1339,14 +1339,14 @@ StepSix:
if (TCP_FIN_RCVD (Tcb->State)) { if (TCP_FIN_RCVD (Tcb->State)) {
DEBUG ((EFI_D_WARN, "TcpInput: connection reset because" DEBUG ((EFI_D_WARN, "TcpInput: connection reset because"
" data is lost for connected TCB %x\n", Tcb)); " data is lost for connected TCB %p\n", Tcb));
goto RESET_THEN_DROP; goto RESET_THEN_DROP;
} }
if (TCP_LOCAL_CLOSED (Tcb->State) && (Nbuf->TotalSize != 0)) { if (TCP_LOCAL_CLOSED (Tcb->State) && (Nbuf->TotalSize != 0)) {
DEBUG ((EFI_D_WARN, "TcpInput: connection reset because" DEBUG ((EFI_D_WARN, "TcpInput: connection reset because"
" data is lost for connected TCB %x\n", Tcb)); " data is lost for connected TCB %p\n", Tcb));
goto RESET_THEN_DROP; goto RESET_THEN_DROP;
} }

View File

@ -521,7 +521,7 @@ TcpSetState (
{ {
DEBUG ( DEBUG (
(EFI_D_INFO, (EFI_D_INFO,
"Tcb (%x) state %s --> %s\n", "Tcb (%p) state %s --> %s\n",
Tcb, Tcb,
mTcpStateName[Tcb->State], mTcpStateName[Tcb->State],
mTcpStateName[State]) mTcpStateName[State])
@ -726,7 +726,7 @@ TcpOnAppClose (
if (!IsListEmpty (&Tcb->RcvQue) || GET_RCV_DATASIZE (Tcb->Sk)) { if (!IsListEmpty (&Tcb->RcvQue) || GET_RCV_DATASIZE (Tcb->Sk)) {
DEBUG ((EFI_D_WARN, "TcpOnAppClose: connection reset " DEBUG ((EFI_D_WARN, "TcpOnAppClose: connection reset "
"because data is lost for TCB %x\n", Tcb)); "because data is lost for TCB %p\n", Tcb));
TcpResetConnection (Tcb); TcpResetConnection (Tcb);
TcpClose (Tcb); TcpClose (Tcb);
@ -841,13 +841,13 @@ TcpOnAppConsume (
if (TcpOld < Tcb->RcvMss) { if (TcpOld < Tcb->RcvMss) {
DEBUG ((EFI_D_INFO, "TcpOnAppConsume: send a window" DEBUG ((EFI_D_INFO, "TcpOnAppConsume: send a window"
" update for a window closed Tcb(%x)\n", Tcb)); " update for a window closed Tcb(%p)\n", Tcb));
TcpSendAck (Tcb); TcpSendAck (Tcb);
} else if (Tcb->DelayedAck == 0) { } else if (Tcb->DelayedAck == 0) {
DEBUG ((EFI_D_INFO, "TcpOnAppConsume: scheduled a delayed" DEBUG ((EFI_D_INFO, "TcpOnAppConsume: scheduled a delayed"
" ACK to update window for Tcb(%x)\n", Tcb)); " ACK to update window for Tcb(%p)\n", Tcb));
Tcb->DelayedAck = 1; Tcb->DelayedAck = 1;
} }
@ -887,7 +887,7 @@ TcpOnAppAbort (
) )
{ {
DEBUG ((EFI_D_WARN, "TcpOnAppAbort: connection reset " DEBUG ((EFI_D_WARN, "TcpOnAppAbort: connection reset "
"issued by application for TCB %x\n", Tcb)); "issued by application for TCB %p\n", Tcb));
switch (Tcb->State) { switch (Tcb->State) {
case TCP_SYN_RCVD: case TCP_SYN_RCVD:

View File

@ -273,7 +273,7 @@ SetPersistTimer:
DEBUG ( DEBUG (
(EFI_D_WARN, (EFI_D_WARN,
"TcpDataToSend: enter persistent state for TCB %x\n", "TcpDataToSend: enter persistent state for TCB %p\n",
Tcb) Tcb)
); );
@ -580,7 +580,7 @@ TcpGetSegmentSock (
if (Nbuf == NULL) { if (Nbuf == NULL) {
DEBUG ((EFI_D_ERROR, "TcpGetSegmentSock: failed to allocate " DEBUG ((EFI_D_ERROR, "TcpGetSegmentSock: failed to allocate "
"a netbuf for TCB %x\n",Tcb)); "a netbuf for TCB %p\n",Tcb));
return NULL; return NULL;
} }
@ -681,7 +681,7 @@ TcpRetransmit (
// //
if (TCP_SEQ_LT (Tcb->SndWl2 + Tcb->SndWnd, Seq)) { if (TCP_SEQ_LT (Tcb->SndWl2 + Tcb->SndWnd, Seq)) {
DEBUG ((EFI_D_WARN, "TcpRetransmit: retransmission cancelled " DEBUG ((EFI_D_WARN, "TcpRetransmit: retransmission cancelled "
"because send window too small for TCB %x\n", Tcb)); "because send window too small for TCB %p\n", Tcb));
return 0; return 0;
} }
@ -783,7 +783,7 @@ SEND_AGAIN:
if (Nbuf == NULL) { if (Nbuf == NULL) {
DEBUG ( DEBUG (
(EFI_D_ERROR, (EFI_D_ERROR,
"TcpToSendData: failed to get a segment for TCB %x\n", "TcpToSendData: failed to get a segment for TCB %p\n",
Tcb) Tcb)
); );
@ -812,7 +812,7 @@ SEND_AGAIN:
) { ) {
DEBUG ((EFI_D_INFO, "TcpToSendData: send FIN " DEBUG ((EFI_D_INFO, "TcpToSendData: send FIN "
"to peer for TCB %x in state %d\n", Tcb, Tcb->State)); "to peer for TCB %p in state %d\n", Tcb, Tcb->State));
End++; End++;
} else { } else {
@ -832,7 +832,7 @@ SEND_AGAIN:
// //
if (Seg->End == Seg->Seq) { if (Seg->End == Seg->Seq) {
DEBUG ((EFI_D_WARN, "TcpToSendData: created a empty" DEBUG ((EFI_D_WARN, "TcpToSendData: created a empty"
" segment for TCB %x, free it now\n", Tcb)); " segment for TCB %p, free it now\n", Tcb));
NetbufFree (Nbuf); NetbufFree (Nbuf);
return Sent; return Sent;
@ -889,7 +889,7 @@ SEND_AGAIN:
!TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_RTT_ON)) { !TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_RTT_ON)) {
DEBUG ((EFI_D_INFO, "TcpToSendData: set RTT measure " DEBUG ((EFI_D_INFO, "TcpToSendData: set RTT measure "
"sequence %d for TCB %x\n", Seq, Tcb)); "sequence %d for TCB %p\n", Seq, Tcb));
TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_RTT_ON); TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_RTT_ON);
Tcb->RttSeq = Seq; Tcb->RttSeq = Seq;
@ -1023,7 +1023,7 @@ TcpToSendAck (
} }
DEBUG ((EFI_D_INFO, "TcpToSendAck: scheduled a delayed" DEBUG ((EFI_D_INFO, "TcpToSendAck: scheduled a delayed"
" ACK for TCB %x\n", Tcb)); " ACK for TCB %p\n", Tcb));
// //
// schedule a delayed ACK // schedule a delayed ACK

View File

@ -106,7 +106,7 @@ TcpConnectTimeout (
{ {
if (!TCP_CONNECTED (Tcb->State)) { if (!TCP_CONNECTED (Tcb->State)) {
DEBUG ((EFI_D_ERROR, "TcpConnectTimeout: connection closed " DEBUG ((EFI_D_ERROR, "TcpConnectTimeout: connection closed "
"because conenction timer timeout for TCB %x\n", Tcb)); "because conenction timer timeout for TCB %p\n", Tcb));
if (EFI_ABORTED == Tcb->Sk->SockError) { if (EFI_ABORTED == Tcb->Sk->SockError) {
SOCK_ERROR (Tcb->Sk, EFI_TIMEOUT); SOCK_ERROR (Tcb->Sk, EFI_TIMEOUT);
@ -114,7 +114,7 @@ TcpConnectTimeout (
if (TCP_SYN_RCVD == Tcb->State) { if (TCP_SYN_RCVD == Tcb->State) {
DEBUG ((EFI_D_WARN, "TcpConnectTimeout: send reset because " DEBUG ((EFI_D_WARN, "TcpConnectTimeout: send reset because "
"connection timer timeout for TCB %x\n", Tcb)); "connection timer timeout for TCB %p\n", Tcb));
TcpResetConnection (Tcb); TcpResetConnection (Tcb);
@ -142,7 +142,7 @@ TcpRexmitTimeout (
UINT32 FlightSize; UINT32 FlightSize;
DEBUG ((EFI_D_WARN, "TcpRexmitTimeout: transmission " DEBUG ((EFI_D_WARN, "TcpRexmitTimeout: transmission "
"timeout for TCB %x\n", Tcb)); "timeout for TCB %p\n", Tcb));
// //
// Set the congestion window. FlightSize is the // Set the congestion window. FlightSize is the
@ -160,7 +160,7 @@ TcpRexmitTimeout (
!TCP_TIMER_ON (Tcb->EnabledTimer, TCP_TIMER_CONNECT)) { !TCP_TIMER_ON (Tcb->EnabledTimer, TCP_TIMER_CONNECT)) {
DEBUG ((EFI_D_ERROR, "TcpRexmitTimeout: connection closed " DEBUG ((EFI_D_ERROR, "TcpRexmitTimeout: connection closed "
"because too many timeouts for TCB %x\n", Tcb)); "because too many timeouts for TCB %p\n", Tcb));
if (EFI_ABORTED == Tcb->Sk->SockError) { if (EFI_ABORTED == Tcb->Sk->SockError) {
SOCK_ERROR (Tcb->Sk, EFI_TIMEOUT); SOCK_ERROR (Tcb->Sk, EFI_TIMEOUT);
@ -260,7 +260,7 @@ TcpFinwait2Timeout (
) )
{ {
DEBUG ((EFI_D_WARN, "TcpFinwait2Timeout: connection closed " DEBUG ((EFI_D_WARN, "TcpFinwait2Timeout: connection closed "
"because FIN_WAIT2 timer timeouts for TCB %x\n", Tcb)); "because FIN_WAIT2 timer timeouts for TCB %p\n", Tcb));
TcpClose (Tcb); TcpClose (Tcb);
} }
@ -281,7 +281,7 @@ Tcp2MSLTimeout (
) )
{ {
DEBUG ((EFI_D_WARN, "Tcp2MSLTimeout: connection closed " DEBUG ((EFI_D_WARN, "Tcp2MSLTimeout: connection closed "
"because TIME_WAIT timer timeouts for TCB %x\n", Tcb)); "because TIME_WAIT timer timeouts for TCB %p\n", Tcb));
TcpClose (Tcb); TcpClose (Tcb);
} }