search for: base3

Displaying 9 results from an estimated 9 matches for "base3".

Did you mean: base
2007 Dec 13
2
[PATCH] avoid ifdefs in desc.h, getting rid of pack_ldt and pack_tss
...gned size) -{ - memset(d, 0, sizeof(*d)); - d->limit0 = size & 0xFFFF; - d->base0 = PTR_LOW(tss); - d->base1 = PTR_MIDDLE(tss) & 0xFF; - d->type = type; - d->p = 1; - d->limit1 = (size >> 16) & 0xF; - d->base2 = (PTR_MIDDLE(tss) >> 8) & 0xFF; - d->base3 = PTR_HIGH(tss); -} - static inline void pack_descriptor(struct desc_struct *desc, unsigned long base, unsigned long limit, unsigned char type, unsigned char flags) @@ -151,30 +136,24 @@ static inline void pack_descriptor(struct desc_struct *desc, unsigned long base, desc->p =...
2007 Dec 13
2
[PATCH] avoid ifdefs in desc.h, getting rid of pack_ldt and pack_tss
...gned size) -{ - memset(d, 0, sizeof(*d)); - d->limit0 = size & 0xFFFF; - d->base0 = PTR_LOW(tss); - d->base1 = PTR_MIDDLE(tss) & 0xFF; - d->type = type; - d->p = 1; - d->limit1 = (size >> 16) & 0xF; - d->base2 = (PTR_MIDDLE(tss) >> 8) & 0xFF; - d->base3 = PTR_HIGH(tss); -} - static inline void pack_descriptor(struct desc_struct *desc, unsigned long base, unsigned long limit, unsigned char type, unsigned char flags) @@ -151,30 +136,24 @@ static inline void pack_descriptor(struct desc_struct *desc, unsigned long base, desc->p =...
2006 Jul 04
1
Final patch for bug 8141 - rewriting substituteList
...on to walk the list. The new version passes all of my tests (make check-all, etc) and I have used it with no negative impact to my work (as verified by comparing before and after tests) so far. The new version fixes the C-stack overflow problem documented in the 8141 bug report. [kbhend at base3 ~]$ cat test.r dfn <- rep(list(rep(0,2)),300000) test <- as.data.frame.list(dfn) which no longer fails on the development tree with this patch in place. I realize it is hard to verify this patch as correct since it converts recursion back into a loop. There has been no official code re...
2012 Jan 19
3
[LLVMdev] register allocation
...re-allocation, as they scan for preg live ranges, right? I wonder, is there a way to know wich regalloc is loaded by the passmanager in the preRA-pass? (In GCC, there is a way to specify register pairing on the primitive level, by adding predicates for operand-combinations, eg "base1, base2, base3" for addr-reg, and "offs1-2, offs3-4, offs5-6" for the index register. Is there a neat way of doing this with Tablegen? For each instruction with two paired register operands, these combinations must be the only legal ones, but do I have to write several instruction definitions to ex...
2011 Aug 28
3
[Bug 741] New: ULOGD segfaults on init
http://bugzilla.netfilter.org/show_bug.cgi?id=741 Summary: ULOGD segfaults on init Product: ulogd Version: SVN (please provide timestamp) Platform: i386 OS/Version: other Status: NEW Severity: blocker Priority: P5 Component: ulogd_MYSQL AssignedTo: netfilter-buglog at lists.netfilter.org
2007 Dec 06
51
[PATCH 0/19] desc_struct integration
Hi, this is a series of patches that unify the struct desc_struct and friends across x86_64 and i386. As usual, it provides paravirt capabilities as a side-effect for x86_64. I consider the main goal, namely, of unifying the desc_struct, an ongoing effort, being this the beginning. A lot of old code has to be touched to accomplish that. I don't consider this patch ready for inclusion.
2007 Dec 06
51
[PATCH 0/19] desc_struct integration
Hi, this is a series of patches that unify the struct desc_struct and friends across x86_64 and i386. As usual, it provides paravirt capabilities as a side-effect for x86_64. I consider the main goal, namely, of unifying the desc_struct, an ongoing effort, being this the beginning. A lot of old code has to be touched to accomplish that. I don't consider this patch ready for inclusion.
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 03/13] lguest64 core
...ages(hv_vcpu, lguest_vcpu_pages); + lguest_free_guest_pages(linfo); +} + +#if 0 +static void print_tss(struct ldttss_desc *tss) +{ + u64 base; + u64 limit; + int i; + u16 iobp = 0x64; + + base = (tss->base0) + ((u64)tss->base1 << 16) + + ((u64)tss->base2 << 24) + ((u64)tss->base3 << 32); + limit = (tss->limit0) + ((u64)tss->limit1 << 16); + if (tss->g) + limit <<= 12; + printk(" base: %016llx\n", base); + printk(" limit: %llx\n", limit); + printk(" type: %x\n", tss->type); + printk(" dpl: %d\n&quo...
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 03/13] lguest64 core
...ages(hv_vcpu, lguest_vcpu_pages); + lguest_free_guest_pages(linfo); +} + +#if 0 +static void print_tss(struct ldttss_desc *tss) +{ + u64 base; + u64 limit; + int i; + u16 iobp = 0x64; + + base = (tss->base0) + ((u64)tss->base1 << 16) + + ((u64)tss->base2 << 24) + ((u64)tss->base3 << 32); + limit = (tss->limit0) + ((u64)tss->limit1 << 16); + if (tss->g) + limit <<= 12; + printk(" base: %016llx\n", base); + printk(" limit: %llx\n", limit); + printk(" type: %x\n", tss->type); + printk(" dpl: %d\n&quo...