aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_minios.c
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2010-12-03 09:36:47 +0000
committerIan Campbell <ian.campbell@citrix.com>2010-12-03 09:36:47 +0000
commit2de68899197631eb7527fd6c519e6ea55ab64f1c (patch)
treec433564cd5c1f04d4bfa63da6087a73c32f1eb45 /tools/libxc/xc_minios.c
parent048f6a9497466b39eb6f34eb0a699e632c15929f (diff)
downloadxen-2de68899197631eb7527fd6c519e6ea55ab64f1c.tar.gz
xen-2de68899197631eb7527fd6c519e6ea55ab64f1c.tar.bz2
xen-2de68899197631eb7527fd6c519e6ea55ab64f1c.zip
libxc: drop fd from xc_interface
Transition to xc_osdep_handle is now complete and nothing uses (or should be using) it. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Signed-off-by: Ian Jackson <ian.jackson.citrix.com>
Diffstat (limited to 'tools/libxc/xc_minios.c')
-rw-r--r--tools/libxc/xc_minios.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/libxc/xc_minios.c b/tools/libxc/xc_minios.c
index 990f7142ef..ee0468782a 100644
--- a/tools/libxc/xc_minios.c
+++ b/tools/libxc/xc_minios.c
@@ -56,7 +56,6 @@ static xc_osdep_handle minios_privcmd_open(xc_interface *xch)
if ( fd == -1)
return XC_OSDEP_OPEN_ERROR;
- xch->fd = fd; /* Remove after transition to full xc_osdep_ops. */
return (xc_osdep_handle)fd;
}
@@ -207,7 +206,6 @@ static xc_osdep_handle minios_evtchn_open(xc_evtchn *xce)
files[fd].evtchn.ports[i].bound = 0;
}
printf("evtchn_open() -> %d\n", fd);
- xce->fd = fd; /* Remove after transition to full xc_osdep_ops. */
return (xc_osdep_handle)fd;
}
@@ -431,7 +429,6 @@ static xc_osdep_handle minios_gnttab_open(xc_gnttab *xcg)
if ( fd == -1 )
return XC_OSDEP_OPEN_ERROR;
gntmap_init(&files[fd].gntmap);
- xcg->fd = fd; /* Remove after transition to full xc_osdep_ops. */
return (xc_osdep_handle)fd;
}