Displaying 3 results from an estimated 3 matches for "outselves".
Did you mean:
ourselves
2006 Nov 20
2
push-pop ordering error found in memdisk
...ar target address
; ecx = 32-bit word count
;
; Assumes cs = ds = es
;
bcopy:
push eax
push ebx
push edx
push ebp
test byte [ConfigFlags],CONFIG_RAW
jz .anymode
smsw ax ; Unprivileged!
test al,01h
jnz .protmode
.realmode:
TRACER 'r'
; We're in real mode, do it outselves
pushfd ; <- *** push 1 ***
push ds ; <- *** push 2 ***
push es ; <- *** push 3 ***
cli
cld
---------------------------------
then a little further down;
or dx,bx
push dx ; Save A20 status ; <- *** push 4 ***
---------------------------------
but then after the copy,...
2009 Jul 06
69
link protection review
Hi all,
Link protection is a new feature we are planning to introduce to
Solaris and we would like to solicit your feedback on it.
Please see attached document for details.
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...mat = plain cpio
- * (3) The modules from modpath which are on the module whitelist.
- * output format = plain cpio
- *
- * The original shell script used the external cpio program to create
- * parts (2) and (3), but we have decided it's going to be faster if
- * we just write out the data outselves. The reasons are that
- * external cpio is slow (particularly when used with SELinux because
- * it does 512 byte reads), and the format that we're writing is
- * narrow and well understood, because we only care that the Linux
- * kernel can read it.
- *
- * This version contains some improvem...