Displaying 4 results from an estimated 4 matches for "net_priv".
Did you mean:
net_prio
2013 Mar 28
1
Makefile race condition with parallel make
When attempting to build syslinux in parallel (make -j5), I encountered
the following error at the end:
rm -f liblpxelinux.a
ar cq liblpxelinux.a rawcon.o ./fs/pxe/dhcp_option.o ./fs/pxe/pxe.o ./fs/pxe/tftp.o ./fs/pxe/urlparse.o ./lwip/src/netif/ethernetif.o ./lwip/src/netif/etharp.o ./lwip/src/netif/slipif.o ./lwip/src/netif/ppp/md5.o ./lwip/src/netif/ppp/randm.o ./lwip/src/netif/ppp/chpms.o
2016 Feb 28
2
[PATCH 0/1] UEFI UDP/TFTP
.../udp.c
> Signed-off-by: Patrick Masotta <masottaus at yahoo.com>
>
> diff -uprN a/core/fs/pxe/pxe.h b/core/fs/pxe/pxe.h
> --- a/core/fs/pxe/pxe.h 2014-10-06 10:27:44.000000000 -0600
> +++ b/core/fs/pxe/pxe.h 2016-02-28 08:44:47.127996962 -0700
> @@ -130,6 +130,7 @@ union net_private {
> struct net_private_efi {
> struct efi_binding *binding; /* EFI binding for protocol */
> uint16_t localport; /* Local port number (0=not in use) */
> + void* context; /* Holds the UDP_IO Instance (used in the new efi UDP codebase) */
> } efi;
> };
>...
2016 Feb 24
6
[PATCH 2/5] ntfs: remove unused variable and have ntfssect use char API calls
The variable 'ok' is never used and generates a warning. Remove it. Also
ntfssect.c is designed to be compiled in non Unicode mode when using
MSVC compilers, so remove all ambiguity about it (LPCTSTR -> LPCSTR, use
of 'A' API calls) so that it doesn't break when compiled in Unicode
mode, which is what Rufus uses with MSVC.
-------------- next part --------------
2016 Feb 28
0
[PATCH 0/1] UEFI UDP/TFTP
...reports are welcome.
Best,
Patrick
Signed-off-by: Patrick Masotta <masottaus at yahoo.com>
diff -uprN a/core/fs/pxe/pxe.h b/core/fs/pxe/pxe.h
--- a/core/fs/pxe/pxe.h 2014-10-06 10:27:44.000000000 -0600
+++ b/core/fs/pxe/pxe.h 2016-02-28 08:44:47.127996962 -0700
@@ -130,6 +130,7 @@ union net_private {
struct net_private_efi {
struct efi_binding *binding; /* EFI binding for protocol */
uint16_t localport; /* Local port number (0=not in use) */
+ void* context; /* Holds the UDP_IO Instance (used in the new efi UDP codebase) */
} efi;
};
diff -uprN a/efi/udp.c b/efi/udp....