Displaying 4 results from an estimated 4 matches for "mstime_t".
Did you mean:
ktime_t
2017 May 31
6
[PATCH 1/4] efi/udp: core_udp_connect should use SubnetMask not StationAddress for netmask
Signed-off-by: Julien Viard de Galbert <jviarddegalbert at online.net>
---
efi/udp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/efi/udp.c b/efi/udp.c
index 1088f47..b0f13ad 100644
--- a/efi/udp.c
+++ b/efi/udp.c
@@ -163,7 +163,7 @@ void core_udp_connect(struct pxe_pvt_inode *socket, uint32_t ip,
} else {
udata.UseDefaultAddress = FALSE;
2016 Mar 02
0
"Tick-counting" vs "Tick-less" timekeeping issues on VMs emulating BIOS PCs
...39;s the real problem.
Just testing I have replaced the timing functions
#define BIOS_timer 0x046C // Timer ticks
typedef uint32_t jiffies_t;
extern volatile jiffies_t __jiffies, __ms_timer;
static inline jiffies_t jiffies(void)
{
return (*(volatile uint32_t *)BIOS_timer);
}
typedef uint32_t mstime_t;
typedef int32_t mstimediff_t;
static inline mstime_t ms_timer(void)
{
return ((*(volatile uint32_t *)BIOS_timer) * 55);
}
lpxelinux.0 hangs while legacy works OK.
I think we should not depend on hoking timer interrupts if we want to be compatible with virtual environments.
Best,
Patrick
2016 Mar 02
2
"Tick-counting" vs "Tick-less" timekeeping issues on VMs emulating BIOS PCs
On 03/01/16 21:11, H. Peter Anvin via Syslinux wrote:
> On 03/01/16 07:21, Patrick Masotta via Syslinux wrote:
>>
>> At the moment I'm seeing timing issues on TFTP transfers (lwIP depends
>> on the new interrupt based timer). I have consistently detected
>>
>> multiple Requests, double ACKs, etc. All these problems seem to be
>>
>> sourced on the
2013 Mar 07
4
Syslinux-5.10-pre1
...lementations.
---
Eric W. Biederman (51):
core: Makefile don't worry about how deep the files are
lwip: Import lwip version 1.3.2
lwip: Delete the ipv6 support and the tests.
lwip: Minimal configuration to get lwip building in syslinux
core: declare jiffies_t and mstime_t and use them.
core: thread: Add a global errno variable to support lwip
core thread: Rename timeouts pvt to better reflect it's use.
core: Move kaboom into it's own header.
lwip: Use kaboom.h
core: Move timer functions into timer.h
core thread: Don't...