summaryrefslogtreecommitdiffstats
path: root/runtime/transport
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/transport')
-rw-r--r--runtime/transport/ChangeLog9
-rw-r--r--runtime/transport/control.c1
-rw-r--r--runtime/transport/procfs.c2
3 files changed, 9 insertions, 3 deletions
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);