Displaying 1 result from an estimated 1 matches for "nextsocket".
Did you mean:
  net_socket
  
2004 Mar 01
0
[PATCH] pxelinux corrupts ipappend-ed paramaters...
...A lot of thanks in
advance. A.
8<--------8<--------8<--------8<--------8<--------8<--------8<--------
--- ./pxelinux.asm.orig	Mon Dec  8 22:17:08 2003
+++ ./pxelinux.asm	Mon Mar  1 02:35:58 2004
@@ -590,6 +590,56 @@
 		add ax,PKTBUF_SIZE
 		loop .setbufptr
 
+%if 1
+;
+; Seed NextSocket...
+;
+%if 1
+	push	ebx
+	push	edx
+	push	ecx
+		xor	eax,eax
+
+		pushfd
+		pop	eax
+        	mov	edx,eax
+        	xor	eax,1<<21	; EFLAGS.ID
+        	push	eax
+        	popfd
+        	pushfd
+        	pop	eax
+        	xor	eax,edx
+        	and	eax,1<<21
+        	jz	.skip_rdtsc
+...