summaryrefslogtreecommitdiffstats
path: root/src/core/interface.c
diff options
context:
space:
mode:
authorMichael Brown2007-05-18 17:26:44 +0200
committerMichael Brown2007-05-18 17:26:44 +0200
commitb63b14ff326e76bfd2ca174be7701992387900b0 (patch)
tree828410e32672a2df67e1a9839126027b4a5723b6 /src/core/interface.c
parentAdd alloc_iob() and free_iob(). (Direct search-and-replace (diff)
downloadipxe-b63b14ff326e76bfd2ca174be7701992387900b0.tar.gz
ipxe-b63b14ff326e76bfd2ca174be7701992387900b0.tar.xz
ipxe-b63b14ff326e76bfd2ca174be7701992387900b0.zip
Add debugging
Diffstat (limited to 'src/core/interface.c')
-rw-r--r--src/core/interface.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/interface.c b/src/core/interface.c
index f9345de6..37aabfe0 100644
--- a/src/core/interface.c
+++ b/src/core/interface.c
@@ -38,6 +38,8 @@
* interface into a null interface.
*/
void plug ( struct interface *intf, struct interface *dest ) {
+ DBGC ( intf, "INTF %p moving from INTF %p to INTF %p\n",
+ intf, intf->dest, dest );
intf_put ( intf->dest );
intf->dest = intf_get ( dest );
}