[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [MINIOS] Fix the build after start_info interface changes.
# HG changeset patch # User kfraser@xxxxxxxxxxxxxxxxxxxxx # Node ID f2151423f729a49281c719308be4cd76f6c934c4 # Parent fda70200da01b89d5339342df6c0db372369a16d [MINIOS] Fix the build after start_info interface changes. Signed-off-by: Anil Madhavapeddy <anil@xxxxxxxxxxxxx> --- extras/mini-os/console/xencons_ring.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff -r fda70200da01 -r f2151423f729 extras/mini-os/console/xencons_ring.c --- a/extras/mini-os/console/xencons_ring.c Wed Aug 16 16:16:32 2006 +0100 +++ b/extras/mini-os/console/xencons_ring.c Wed Aug 16 16:48:45 2006 +0100 @@ -14,13 +14,13 @@ static inline struct xencons_interface *xencons_interface(void) { - return mfn_to_virt(start_info.console_mfn); + return mfn_to_virt(start_info.console.domU.mfn); } static inline void notify_daemon(void) { /* Use evtchn: this is called early, before irq is set up. */ - notify_remote_via_evtchn(start_info.console_evtchn); + notify_remote_via_evtchn(start_info.console.domU.evtchn); } int xencons_ring_send_no_notify(const char *data, unsigned len) @@ -80,10 +80,10 @@ int xencons_ring_init(void) { int err; - if (!start_info.console_evtchn) + if (!start_info.console.domU.evtchn) return 0; - err = bind_evtchn(start_info.console_evtchn, handle_input, + err = bind_evtchn(start_info.console.domU.evtchn, handle_input, NULL); if (err <= 0) { printk("XEN console request chn bind failed %i\n", err); _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |