diff options
author | Gene Cumm <gene.cumm@gmail.com> | 2013-11-27 16:48:55 -0500 |
---|---|---|
committer | Gene Cumm <gene.cumm@gmail.com> | 2014-01-29 11:55:14 -0500 |
commit | 5bf9bdcf0b2e3b4b9161c55713d8004ce6924900 (patch) | |
tree | 3eb0dcf215a128573568a4c369ae9dccaa109d20 /efi/udp.c | |
parent | 1264f6ac132e9b399bfb846358ae1f055a42c23a (diff) | |
download | syslinux-5bf9bdcf0b2e3b4b9161c55713d8004ce6924900.tar.gz syslinux-5bf9bdcf0b2e3b4b9161c55713d8004ce6924900.tar.xz syslinux-5bf9bdcf0b2e3b4b9161c55713d8004ce6924900.zip |
efi: Loop on Configure when EFI_NO_MAPPING in udp.c/tcp.c
This should help hardware that doesn't return EFI_SUCCESS immediately.
Reported-by: Jason Matthews <jason.david.matthews@gmail.com>
Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
Diffstat (limited to 'efi/udp.c')
-rw-r--r-- | efi/udp.c | 46 |
1 files changed, 39 insertions, 7 deletions
@@ -14,6 +14,42 @@ extern EFI_GUID Udp4ServiceBindingProtocol, Udp4Protocol; */ static struct efi_binding *udp_reader; +/** + * Try to configure this UDP socket + * + * @param:udp, the EFI_UDP4 socket to configure + * @param:udata, the EFI_UDP4_CONFIG_DATA to use + * @param:f, the name of the function as a wide string. + * + * @out: status as EFI_STATUS + */ + +EFI_STATUS core_udp_configure(EFI_UDP4 *udp, EFI_UDP4_CONFIG_DATA *udata, + short unsigned int *f) +{ + EFI_STATUS status; + int unmapped = 1; + jiffies_t start, last, cur; + + last = start = jiffies(); + while (unmapped){ + status = uefi_call_wrapper(udp->Configure, 2, udp, udata); + if (status != EFI_NO_MAPPING) + unmapped = 0; + else { + cur = jiffies(); + if ( (cur - last) >= EFI_NOMAP_PRINT_DELAY ) { + last = cur; + Print(L"%s: stalling on configure with no mapping\n", f); + } else if ( (cur - start) > EFI_NOMAP_PRINT_DELAY * EFI_NOMAP_PRINT_COUNT) { + Print(L"%s: aborting on no mapping\n", f); + unmapped = 0; + } + } + } + return status; +} + /** * Open a socket * @@ -42,7 +78,7 @@ int core_udp_open(struct pxe_pvt_inode *socket) memset(&udata, 0, sizeof(udata)); - status = uefi_call_wrapper(udp->Configure, 2, udp, &udata); + status = core_udp_configure(udp, &udata, L"core_udp_open"); if (status != EFI_SUCCESS) goto bail; @@ -116,7 +152,7 @@ void core_udp_connect(struct pxe_pvt_inode *socket, uint32_t ip, udata.AcceptPromiscuous = TRUE; udata.TimeToLive = 64; - status = uefi_call_wrapper(udp->Configure, 2, udp, &udata); + status = core_udp_configure(udp, &udata, L"core_udp_connect"); if (status != EFI_SUCCESS) { Print(L"Failed to configure UDP: %d\n", status); return; @@ -263,8 +299,6 @@ void core_udp_send(struct pxe_pvt_inode *socket, const void *data, size_t len) if (status != EFI_SUCCESS) goto bail; - txdata->UdpSessionData = NULL; - txdata->GatewayAddress = NULL; txdata->DataLength = len; txdata->FragmentCount = 1; frag = &txdata->FragmentTable[0]; @@ -339,7 +373,7 @@ void core_udp_sendto(struct pxe_pvt_inode *socket, const void *data, udata.AcceptPromiscuous = TRUE; udata.TimeToLive = 64; - status = uefi_call_wrapper(udp->Configure, 2, udp, &udata); + status = core_udp_configure(udp, &udata, L"core_udp_sendto"); if (status != EFI_SUCCESS) goto bail; @@ -348,8 +382,6 @@ void core_udp_sendto(struct pxe_pvt_inode *socket, const void *data, if (status != EFI_SUCCESS) goto bail; - txdata->UdpSessionData = NULL; - txdata->GatewayAddress = NULL; txdata->DataLength = len; txdata->FragmentCount = 1; frag = &txdata->FragmentTable[0]; |