search for: ccontrol

Displaying 15 results from an estimated 15 matches for "ccontrol".

Did you mean: control
2007 Apr 18
2
MMU operations in paravirt_ops
...l operations into the ops structure, and batching done by the op itself (perhaps with a default implementation for those too lazy to implement it). At this point we run into the brick wall of my ignorance: Chris, Zach, anyone, are there any obvious interfaces from a Linux POV? Thanks! Rusty. -- ccontrol: http://ccontrol.ozlabs.org
2007 Apr 18
2
MMU operations in paravirt_ops
...l operations into the ops structure, and batching done by the op itself (perhaps with a default implementation for those too lazy to implement it). At this point we run into the brick wall of my ignorance: Chris, Zach, anyone, are there any obvious interfaces from a Linux POV? Thanks! Rusty. -- ccontrol: http://ccontrol.ozlabs.org
2007 Apr 18
2
[PATCH 1/4] Prep for paravirt: move pagetable includes.
Move header includes for the nopud / nopmd types to the location of the actual pte / pgd type definitions. This allows generic 4-level page type code to be written before the split 2/3 level page table headers are included. Signed-off-by: Zachary Amsden <zach@vmware.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2007 Apr 18
2
[PATCH 1/4] Prep for paravirt: move pagetable includes.
Move header includes for the nopud / nopmd types to the location of the actual pte / pgd type definitions. This allows generic 4-level page type code to be written before the split 2/3 level page table headers are included. Signed-off-by: Zachary Amsden <zach@vmware.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2007 Apr 18
1
[PATCH] Gerd Hoffman's move-vsyscall-into-user-address-range patch
..._SHIFT) @@ -137,6 +137,8 @@ extern int page_is_ram(unsigned long pag ((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0 ) | \ VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC) +#define __HAVE_ARCH_GATE_AREA 1 + #endif /* __KERNEL__ */ #include <asm-generic/memory_model.h> -- ccontrol: http://ccontrol.ozlabs.org
2007 Apr 18
1
[PATCH] Gerd Hoffman's move-vsyscall-into-user-address-range patch
..._SHIFT) @@ -137,6 +137,8 @@ extern int page_is_ram(unsigned long pag ((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0 ) | \ VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC) +#define __HAVE_ARCH_GATE_AREA 1 + #endif /* __KERNEL__ */ #include <asm-generic/memory_model.h> -- ccontrol: http://ccontrol.ozlabs.org
2007 Apr 18
2
[PATCH 1/3] Paravirtualization: Kernel Ring Cleanups
...e level */ +#define SEGMENT_RPL_MASK 0x3 + +#define get_kernel_rpl() 0 + +#define COMPARE_SEGMENT_STACK(segment, offset) \ + cmpw $segment, offset(%esp); + +#define COMPARE_SEGMENT_REG(segment, reg) \ + pushl %eax; \ + mov reg, %eax; \ + cmpw $segment,%ax; \ + popl %eax; + #endif -- ccontrol: http://ccontrol.ozlabs.org
2007 Apr 18
2
[PATCH 1/3] Paravirtualization: Kernel Ring Cleanups
...e level */ +#define SEGMENT_RPL_MASK 0x3 + +#define get_kernel_rpl() 0 + +#define COMPARE_SEGMENT_STACK(segment, offset) \ + cmpw $segment, offset(%esp); + +#define COMPARE_SEGMENT_REG(segment, reg) \ + pushl %eax; \ + mov reg, %eax; \ + cmpw $segment,%ax; \ + popl %eax; + #endif -- ccontrol: http://ccontrol.ozlabs.org
2007 Oct 09
2
Javascript "please wait" image
When I used to write Perl CGI scripts I displayed an animated gif image whilst waiting for a long database query to load, and some javascript to remove the image once the content was available. I''d like to do the same thing with Rails, but it''s not clear to me how to do this in Rails. Does anyone have any suggestions? -- Posted via http://www.ruby-forum.com/.
2007 Apr 18
1
[PATCH] (with benchmarks) binary patching of paravirt_ops call sites
...%ecx; pushl %edx; call *paravirt_ops+PARAVIRT_irq_disable; popl %edx; popl %ecx; popl %eax" -#define STI_STRING "pushl %eax; pushl %ecx; pushl %edx; call *paravirt_ops+PARAVIRT_irq_enable; popl %edx; popl %ecx; popl %eax" - #endif /* PARAVIRT */ #endif /* __ASM_PARAVIRT_H */ -- ccontrol: http://ccontrol.ozlabs.org
2007 Apr 18
1
[PATCH] (with benchmarks) binary patching of paravirt_ops call sites
...%ecx; pushl %edx; call *paravirt_ops+PARAVIRT_irq_disable; popl %edx; popl %ecx; popl %eax" -#define STI_STRING "pushl %eax; pushl %ecx; pushl %edx; call *paravirt_ops+PARAVIRT_irq_enable; popl %edx; popl %ecx; popl %eax" - #endif /* PARAVIRT */ #endif /* __ASM_PARAVIRT_H */ -- ccontrol: http://ccontrol.ozlabs.org
2007 Apr 18
2
[PATCH] exec-shield style vdso move.
...#endif /* __HAVE_ARCH_GATE_AREA */ +#ifndef __HAVE_ARCH_VMA_NAME +static inline const char *arch_vma_name(struct vm_area_struct *vma) +{ + return NULL; +} +#endif /* __HAVE_ARCH_VMA_NAME */ + /* /proc/<pid>/oom_adj set to -17 protects from the oom-killer */ #define OOM_DISABLE -17 -- ccontrol: http://ccontrol.ozlabs.org
2007 Apr 18
2
[PATCH] exec-shield style vdso move.
...#endif /* __HAVE_ARCH_GATE_AREA */ +#ifndef __HAVE_ARCH_VMA_NAME +static inline const char *arch_vma_name(struct vm_area_struct *vma) +{ + return NULL; +} +#endif /* __HAVE_ARCH_VMA_NAME */ + /* /proc/<pid>/oom_adj set to -17 protects from the oom-killer */ #define OOM_DISABLE -17 -- ccontrol: http://ccontrol.ozlabs.org
2011 Aug 11
17
f.collection_select: what are the parameters?
The rails docs are so horrible on the collection_select method. They need to show a *complete* form, and show two examples: one that calls f.collection_select(), and another that calls collection_select(), and explain the differences. Given this line: f.collection_select :topic, Topic.all, :id, :category What the !@#$!@#$ is :topic? -- Posted via http://www.ruby-forum.com/. -- You received
2005 Feb 07
1
samba for solaris
Hi: I need install in one solaris9-sparc Samba, but in the http://us4samba.org/ftp/Binary_Packages/solaris/ <http://us4samba.org/ftp/Binary_Packages/solaris/> I dont see the binaries. Somebody could please help me to find samba for solaris sparc. Thanks a lot E.