search for: 28f

Displaying 14 results from an estimated 14 matches for "28f".

Did you mean: 28
2015 Nov 21
2
Recent -Os code size regressions
...x 27e: 89 10 mov %edx,(%eax) 280: f6 c1 40 ​ ​ test $0x40,%cl 283: 74 08 je 28d <t_run_test+0x28d> 285: 81 ca 08 04 00 00 or $0x408,%edx 28b: 89 10 mov %edx,(%eax) 28d: 84 c9 test %cl,%cl 28f: 0f 89 34 01 00 00 jns 3c9 <t_run_test+0x3c9> After ​ r252152:​ Note that the OR $0x408 and OR $0x810 come ​now ​ in reverse order. 35d: 81 c9 08 04 00 00 or $0x408,%ecx 363: 89 4c 24 28 mov %ecx,0x28(%esp) 367: 89 df mov %ebx,%edi 369: 83 e...
2000 Jun 25
2
tinc1.0pre3
...on tinc.9[21698]: Ready: listening on port 655 Jun 25 21:14:49 lemon tinc.9[21698]: Connection from 213.54.42.228 port 1046 Jun 25 21:14:49 lemon tinc.9[21698]: Sending BASIC_INFO to 213.54.42.228 Jun 25 21:14:49 lemon tinc.9[21698]: Got request from 0.0.0.0 (213.54.42.228): 61 7 c0a80964/ffffff00:28f 2 Jun 25 21:14:49 lemon tinc.9[21698]: Got BASIC_INFO from 213.54.42.228 Jun 25 21:14:49 lemon tinc.9[21698]: Opening UDP socket to 213.54.42.228 Jun 25 21:14:49 lemon tinc.9[21698]: Sending PASSPHRASE to 192.168.9.100 (213.54.42.228) *** CLIENT side log file from startup until sone seconds after...
2000 Jun 27
1
[CVS] humbolt:/tinc/cabal/src net.c netutl.c protocol.c
...eth7: MII link partner 41e1, negotiated 01e1. Jun 27 09:05:04 lemon tinc.9[10186]: Connection from 192.168.2.100 port 1076 Jun 27 09:05:04 lemon tinc.9[10186]: Sending BASIC_INFO to 192.168.2.100 Jun 27 09:05:04 lemon tinc.9[10186]: Got request from 0.0.0.0 (192.168.2.100): 61 7 c0a80963/ffffff00:28f 2 Jun 27 09:05:04 lemon tinc.9[10186]: Got BASIC_INFO from 192.168.2.100 Jun 27 09:05:04 lemon tinc.9[10186]: Opening UDP socket to 192.168.2.100 Jun 27 09:05:04 lemon tinc.9[10186]: Sending PASSPHRASE to 192.168.9.99 (192.168.2.100) Jun 27 09:05:04 lemon tinc.9[10186]: Got request from 192.168.9....
2007 Apr 18
1
Patch: use .pushsection/.popsection
...6bit stack -1: INTERRUPT_RETURN -.section __ex_table,"a" +1: iret +.pushsection __ex_table,"a" .align 4 .long 1b,iret_exc -.previous +.popsection CFI_ENDPROC = # perform work that needs to be done immediately before resumption @@ -525,14 +525,14 @@ syscall_badsys: je 28f; \ 27: popl %eax; \ CFI_ADJUST_CFA_OFFSET -4; \ -.section .fixup,"ax"; \ +.pushsection .fixup,"ax"; \ 28: movl $__KERNEL_DS, %eax; \ movl %eax, %ds; \ movl %eax, %es; \ /* switch to 32bit stack */ \ FIXUP_ESPFIX_STACK; \ jmp 27b; \ -.previous +.popsection = /*...
2007 Apr 18
1
Patch: use .pushsection/.popsection
...6bit stack -1: INTERRUPT_RETURN -.section __ex_table,"a" +1: iret +.pushsection __ex_table,"a" .align 4 .long 1b,iret_exc -.previous +.popsection CFI_ENDPROC = # perform work that needs to be done immediately before resumption @@ -525,14 +525,14 @@ syscall_badsys: je 28f; \ 27: popl %eax; \ CFI_ADJUST_CFA_OFFSET -4; \ -.section .fixup,"ax"; \ +.pushsection .fixup,"ax"; \ 28: movl $__KERNEL_DS, %eax; \ movl %eax, %ds; \ movl %eax, %es; \ /* switch to 32bit stack */ \ FIXUP_ESPFIX_STACK; \ jmp 27b; \ -.previous +.popsection = /*...
2007 Apr 18
1
[PATCH 2/2] Transparent privilege levels in entry.S
...me_userspace) CLI # make sure we don't miss an interrupt # setting need_resched or sigpending @@ -399,10 +400,11 @@ syscall_badsys: #define UNWIND_ESPFIX_STACK \ pushl %eax; \ movl %ss, %eax; \ + MASK_RPL(%ax); \ /* see if on 16bit stack */ \ cmpw $__ESPFIX_SS, %ax; \ jne 28f; \ - movl $__KERNEL_DS, %edx; \ + movl $__USER_DS, %edx; \ movl %edx, %ds; \ movl %edx, %es; \ /* switch to 32bit stack */ \ @@ -500,7 +502,7 @@ ENTRY(simd_coprocessor_error) ENTRY(device_not_available) pushl $-1 # mark this as an int SAVE_ALL - movl %cr0, %eax + GET_CR0 testl $0x4,...
2007 Apr 18
1
[PATCH 2/2] Transparent privilege levels in entry.S
...me_userspace) CLI # make sure we don't miss an interrupt # setting need_resched or sigpending @@ -399,10 +400,11 @@ syscall_badsys: #define UNWIND_ESPFIX_STACK \ pushl %eax; \ movl %ss, %eax; \ + MASK_RPL(%ax); \ /* see if on 16bit stack */ \ cmpw $__ESPFIX_SS, %ax; \ jne 28f; \ - movl $__KERNEL_DS, %edx; \ + movl $__USER_DS, %edx; \ movl %edx, %ds; \ movl %edx, %es; \ /* switch to 32bit stack */ \ @@ -500,7 +502,7 @@ ENTRY(simd_coprocessor_error) ENTRY(device_not_available) pushl $-1 # mark this as an int SAVE_ALL - movl %cr0, %eax + GET_CR0 testl $0x4,...
2015 Nov 21
3
Recent -Os code size regressions
Maybe adjust this to be different for –Os, -Oz than for –O2? Kevin Smith From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of James Molloy via llvm-dev Sent: Friday, November 20, 2015 4:05 PM To: Steve King <steve at metrokings.com>; Renato Golin <renato.golin at linaro.org> Cc: llvm-dev <llvm-dev at lists.llvm.org> Subject: Re: [llvm-dev] Recent -Os code
2007 Apr 18
0
[RFC, PATCH 11/24] i386 Vmi segment changes
...need_resched or sigpending @@ -382,17 +384,14 @@ syscall_badsys: /* put ESP to the proper location */ \ movl %eax, %esp; #define UNWIND_ESPFIX_STACK \ - pushl %eax; \ - movl %ss, %eax; \ - /* see if on 16bit stack */ \ - cmpw $__ESPFIX_SS, %ax; \ + COMPARE_SEGMENT_REG(__ESPFIX_SS, %ss) \ jne 28f; \ - movl $__KERNEL_DS, %edx; \ + movl $__USER_DS, %edx; \ movl %edx, %ds; \ movl %edx, %es; \ /* switch to 32bit stack */ \ FIXUP_ESPFIX_STACK \ -28: popl %eax; +28:; /* * Build the entry stubs and pointer table with @@ -451,6 +450,7 @@ error_code: pushl %es UNWIND_ESPFIX_STACK...
2007 Apr 18
0
[RFC, PATCH 11/24] i386 Vmi segment changes
...need_resched or sigpending @@ -382,17 +384,14 @@ syscall_badsys: /* put ESP to the proper location */ \ movl %eax, %esp; #define UNWIND_ESPFIX_STACK \ - pushl %eax; \ - movl %ss, %eax; \ - /* see if on 16bit stack */ \ - cmpw $__ESPFIX_SS, %ax; \ + COMPARE_SEGMENT_REG(__ESPFIX_SS, %ss) \ jne 28f; \ - movl $__KERNEL_DS, %edx; \ + movl $__USER_DS, %edx; \ movl %edx, %ds; \ movl %edx, %es; \ /* switch to 32bit stack */ \ FIXUP_ESPFIX_STACK \ -28: popl %eax; +28:; /* * Build the entry stubs and pointer table with @@ -451,6 +450,7 @@ error_code: pushl %es UNWIND_ESPFIX_STACK...
2007 Apr 18
2
[PATCH 1/3] Paravirtualization: Kernel Ring Cleanups
...eed_resched or sigpending @@ -386,17 +388,14 @@ syscall_badsys: /* put ESP to the proper location */ \ movl %eax, %esp; #define UNWIND_ESPFIX_STACK \ - pushl %eax; \ - movl %ss, %eax; \ - /* see if on 16bit stack */ \ - cmpw $__ESPFIX_SS, %ax; \ + COMPARE_SEGMENT_REG(__ESPFIX_SS, %ss); \ jne 28f; \ - movl $__KERNEL_DS, %edx; \ + movl $__USER_DS, %edx; \ movl %edx, %ds; \ movl %edx, %es; \ /* switch to 32bit stack */ \ FIXUP_ESPFIX_STACK \ -28: popl %eax; +28:; /* * Build the entry stubs and pointer table with @@ -455,6 +454,7 @@ error_code: pushl %es UNWIND_ESPFIX_STACK...
2007 Apr 18
2
[PATCH 1/3] Paravirtualization: Kernel Ring Cleanups
...eed_resched or sigpending @@ -386,17 +388,14 @@ syscall_badsys: /* put ESP to the proper location */ \ movl %eax, %esp; #define UNWIND_ESPFIX_STACK \ - pushl %eax; \ - movl %ss, %eax; \ - /* see if on 16bit stack */ \ - cmpw $__ESPFIX_SS, %ax; \ + COMPARE_SEGMENT_REG(__ESPFIX_SS, %ss); \ jne 28f; \ - movl $__KERNEL_DS, %edx; \ + movl $__USER_DS, %edx; \ movl %edx, %ds; \ movl %edx, %es; \ /* switch to 32bit stack */ \ FIXUP_ESPFIX_STACK \ -28: popl %eax; +28:; /* * Build the entry stubs and pointer table with @@ -455,6 +454,7 @@ error_code: pushl %es UNWIND_ESPFIX_STACK...
2007 Apr 18
33
[RFC PATCH 00/33] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list. I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without modifications. How did I try it? Created a (non-root) build environment (not a mock ) Installed the kernel.scr.rpm and did a rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee prep-out.log The build failed at the end: Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL Checking