search for: kstuff

Displaying 4 results from an estimated 4 matches for "kstuff".

Did you mean: stuff
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 04/13] Useful debugging
...eturn 0; +} + +static void put_text_segs(struct lguest_text_ptr *segs) +{ + struct lguest_text_ptr *p; + + while (segs) { + p = (struct lguest_text_ptr*)segs->next; + kfree(segs); + segs = p; + } +} + +static unsigned int expand_symbol(struct lguest_vcpu *vcpu, + struct guest_ksym_stuff *kstuff, + unsigned int off, char *result) +{ + int len, skipped_first = 0; + const u8 *tptr, *data; + + /* get the compressed symbol length from the first symbol byte */ + data = &kstuff->names[off]; + + len = lhread_u8(vcpu, (u64)data); + + data++; + + /* update the offset to return the offse...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 04/13] Useful debugging
...eturn 0; +} + +static void put_text_segs(struct lguest_text_ptr *segs) +{ + struct lguest_text_ptr *p; + + while (segs) { + p = (struct lguest_text_ptr*)segs->next; + kfree(segs); + segs = p; + } +} + +static unsigned int expand_symbol(struct lguest_vcpu *vcpu, + struct guest_ksym_stuff *kstuff, + unsigned int off, char *result) +{ + int len, skipped_first = 0; + const u8 *tptr, *data; + + /* get the compressed symbol length from the first symbol byte */ + data = &kstuff->names[off]; + + len = lhread_u8(vcpu, (u64)data); + + data++; + + /* update the offset to return the offse...
2007 Apr 18
1
[PATCH] lguest32 kallsyms backtrace of guest.
...+ } + return 0; +} + +static void put_text_segs(struct lguest_text_ptr *segs) +{ + struct lguest_text_ptr *p; + + while (segs) { + p = (struct lguest_text_ptr*)segs->next; + kfree(segs); + segs = p; + } +} + +static unsigned int expand_symbol(struct lguest *lg, + struct guest_ksym_stuff *kstuff, + unsigned int off, char *result) +{ + int len, skipped_first = 0; + const u8 *tptr, *data; + + /* get the compressed symbol length from the first symbol byte */ + data = &kstuff->names[off]; + + len = lgread_u8(lg, (unsigned long)data); + + data++; + + /* update the offset to return t...
2007 Apr 18
1
[PATCH] lguest32 kallsyms backtrace of guest.
...+ } + return 0; +} + +static void put_text_segs(struct lguest_text_ptr *segs) +{ + struct lguest_text_ptr *p; + + while (segs) { + p = (struct lguest_text_ptr*)segs->next; + kfree(segs); + segs = p; + } +} + +static unsigned int expand_symbol(struct lguest *lg, + struct guest_ksym_stuff *kstuff, + unsigned int off, char *result) +{ + int len, skipped_first = 0; + const u8 *tptr, *data; + + /* get the compressed symbol length from the first symbol byte */ + data = &kstuff->names[off]; + + len = lgread_u8(lg, (unsigned long)data); + + data++; + + /* update the offset to return t...