search for: num_syms

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

2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 04/13] Useful debugging
...R14: %016llx R15: %016llx\n", + regs->r13, regs->r14, regs->r15); + + printk("errcode: %llx trapnum: %llx\n", + regs->errcode, regs->trapnum); + + lguest_dump_trace(vcpu, regs); +} + +struct guest_ksym_stuff { + unsigned long *addresses; + unsigned long num_syms; + u8 *names; + u8 *token_table; + u16 *token_index; + unsigned long *markers; +}; + +static struct lguest_text_ptr *get_text_segs(struct lguest_vcpu *vcpu) +{ + struct lguest_guest_info *linfo = vcpu->guest; + struct lguest_text_ptr *segs, **p; + struct lguest_text_ptr *g; + unsigned long addr;...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 04/13] Useful debugging
...R14: %016llx R15: %016llx\n", + regs->r13, regs->r14, regs->r15); + + printk("errcode: %llx trapnum: %llx\n", + regs->errcode, regs->trapnum); + + lguest_dump_trace(vcpu, regs); +} + +struct guest_ksym_stuff { + unsigned long *addresses; + unsigned long num_syms; + u8 *names; + u8 *token_table; + u16 *token_index; + unsigned long *markers; +}; + +static struct lguest_text_ptr *get_text_segs(struct lguest_vcpu *vcpu) +{ + struct lguest_guest_info *linfo = vcpu->guest; + struct lguest_text_ptr *segs, **p; + struct lguest_text_ptr *g; + unsigned long addr;...
2007 Apr 18
1
[PATCH] lguest32 kallsyms backtrace of guest.
...st/lguest.c @@ -48,6 +48,14 @@ extern const char lgstart_iret[], lgend_ extern asmlinkage void lguest_maybe_init(void); extern void lguest_iret(void); +/* For back tracing from the HV */ +extern const unsigned long kallsyms_addresses[] __attribute__((weak)); +extern const unsigned long kallsyms_num_syms __attribute__((weak)); +extern const u8 kallsyms_names[] __attribute__((weak)); +extern const u8 kallsyms_token_table[] __attribute__((weak)); +extern const u16 kallsyms_token_index[] __attribute__((weak)); +extern const unsigned long kallsyms_markers[] __attribute__((weak)); + struct lguest_data...
2007 Apr 18
1
[PATCH] lguest32 kallsyms backtrace of guest.
...st/lguest.c @@ -48,6 +48,14 @@ extern const char lgstart_iret[], lgend_ extern asmlinkage void lguest_maybe_init(void); extern void lguest_iret(void); +/* For back tracing from the HV */ +extern const unsigned long kallsyms_addresses[] __attribute__((weak)); +extern const unsigned long kallsyms_num_syms __attribute__((weak)); +extern const u8 kallsyms_names[] __attribute__((weak)); +extern const u8 kallsyms_token_table[] __attribute__((weak)); +extern const u16 kallsyms_token_index[] __attribute__((weak)); +extern const unsigned long kallsyms_markers[] __attribute__((weak)); + struct lguest_data...