summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--runtime/transport/ChangeLog4
-rw-r--r--runtime/transport/transport.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/runtime/transport/ChangeLog b/runtime/transport/ChangeLog
index c9b2552b..2f4dc6ba 100644
--- a/runtime/transport/ChangeLog
+++ b/runtime/transport/ChangeLog
@@ -1,3 +1,7 @@
+2005-08-03 Martin Hunt <hunt@redhat.com>
+
+ * transport.c: Comment out a couple printks.
+
2005-08-01 Martin Hunt <hunt@redhat.com>
* control.h: Remove STP commands from here and put in
diff --git a/runtime/transport/transport.c b/runtime/transport/transport.c
index 07a57733..a0c1122e 100644
--- a/runtime/transport/transport.c
+++ b/runtime/transport/transport.c
@@ -138,14 +138,14 @@ static void _stp_handle_exit (void *data)
*/
void _stp_transport_close()
{
- printk("************** transport_close *************\n");
+ //printk("************** transport_close *************\n");
_stp_cleanup_and_exit(1);
if (_stp_transport_mode == STP_TRANSPORT_RELAYFS)
_stp_relayfs_close(_stp_chan, _stp_dir);
_stp_ctrl_unregister(_stp_pid);
- printk("---- CLOSED ----\n");
+ //printk("---- CLOSED ----\n");
}
@@ -167,7 +167,7 @@ void _stp_transport_close()
int _stp_transport_open(struct transport_info *info)
{
- printk ("stp_transport_open: %d bufs of %d bytes. target=%d\n", info->n_subbufs, info->subbuf_size, info->target);
+ //printk ("stp_transport_open: %d bufs of %d bytes. target=%d\n", info->n_subbufs, info->subbuf_size, info->target);
info->transport_mode = _stp_transport_mode;
_stp_target = info->target;