Displaying 1 result from an estimated 1 matches for "core_tcp_fill_buff".
Did you mean:
core_tcp_fill_buffer
2017 Nov 21
2
[PATCH] EFI TCP buffer reuse bug
...TP) */
const struct pxe_conn_ops *ops;
};
--- master/efi/tcp.c 2017-07-22 14:45:46.628674366 -0500
+++ jw/efi/tcp.c 2017-07-24 09:24:37.072922478 -0500
@@ -199,8 +199,6 @@ void core_tcp_close_file(struct inode *i
socket->net.efi.binding = NULL;
}
-static char databuf[8192];
-
void core_tcp_fill_buffer(struct inode *inode)
{
struct pxe_pvt_inode *socket = PVT(inode);
@@ -210,7 +208,6 @@ void core_tcp_fill_buffer(struct inode *
EFI_TCP4_FRAGMENT_DATA *frag;
EFI_STATUS status;
EFI_TCP4 *tcp = (EFI_TCP4 *)b->this;
- void *data;
size_t len;
memset(&iotoken...