diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/ChangeLog | 13 | ||||
-rw-r--r-- | runtime/staprun/ChangeLog | 9 | ||||
-rw-r--r-- | runtime/transport/ChangeLog | 9 | ||||
-rw-r--r-- | runtime/transport/control.c | 1 | ||||
-rw-r--r-- | runtime/transport/procfs.c | 2 |
5 files changed, 31 insertions, 3 deletions
diff --git a/runtime/ChangeLog b/runtime/ChangeLog index 25faffe2..de988561 100644 --- a/runtime/ChangeLog +++ b/runtime/ChangeLog @@ -1,3 +1,16 @@ +2008-07-10 Frank Ch. Eigler <fche@elastic.org> + + PR 6736. + * sym.c (_stp_module_relocate): Generalized to search all + _stp_module[]s. + (_stp_kallsyms_lookup_name): Gone. + (_stp_find_module_by_addr): Rewritten. + (_stp_get_unwind_info): Temporarily gone. + * sym.h (_stp_module): Simplify structure. + * unwind.c: Adapt just enough to compile with eliminated elements. + + * probes.stp: Removed unused file. + 2008-07-09 Mark Wielaard <mwielaard@redhat.com> PR 6732 diff --git a/runtime/staprun/ChangeLog b/runtime/staprun/ChangeLog index 27f4d8c8..a4f47880 100644 --- a/runtime/staprun/ChangeLog +++ b/runtime/staprun/ChangeLog @@ -1,3 +1,12 @@ +2008-07-10 Frank Ch. Eigler <fche@elastic.org> + + PR 6736. + * common.c (send_request): Move here ... + * mainloop.c: from here. + * staprun.c (send_relocations): New function to send kernel + and module relocation bases to probe module. + * staprun.h: Corresponding changes. + 2008-06-03 Frank Ch. Eigler <fche@elastic.org> PR 6429. diff --git a/runtime/transport/ChangeLog b/runtime/transport/ChangeLog index 4bb0868b..58431e54 100644 --- a/runtime/transport/ChangeLog +++ b/runtime/transport/ChangeLog @@ -1,3 +1,12 @@ +2008-07-10 Frank Ch. Eigler <fche@elastic.org> + + PR 6736. + * control.c (_stp_ctl_write_cmd): Accept STP_RELOCATION message. + * symbols.c: Gutted file. + (_stp_do_relocation): New function. + * transport.c (_stp_transport_init): Corresponding changes. + * transport_msgs.h: Ditto. + 2008-07-09 Frank Ch. Eigler <fche@elastic.org> PR5963 diff --git a/runtime/transport/control.c b/runtime/transport/control.c index 09506bb1..7d78cca4 100644 --- a/runtime/transport/control.c +++ b/runtime/transport/control.c @@ -32,7 +32,6 @@ static ssize_t _stp_ctl_write_cmd(struct file *file, const char __user *buf, siz #ifdef DEBUG_TRANS - printk (KERN_INFO " control write_cmd: Got %s. len=%d\n", _stp_command_name[type], (int)count); if (type < STP_MAX_CMD) _dbug("Got %s. len=%d\n", _stp_command_name[type], (int)count); #endif diff --git a/runtime/transport/procfs.c b/runtime/transport/procfs.c index 64b48e4d..750e1994 100644 --- a/runtime/transport/procfs.c +++ b/runtime/transport/procfs.c @@ -122,8 +122,6 @@ static ssize_t _stp_ctl_write_cmd(struct file *file, const char __user *buf, siz if (get_user(type, (int __user *)buf)) return -EFAULT; - printk (KERN_INFO " procfs write_cmd: Got %s. len=%d\n", _stp_command_name[type], (int)count); - #if DEBUG_TRANSPORT > 0 if (type < STP_MAX_CMD) _dbug("Got %s. len=%d\n", _stp_command_name[type], (int)count); |