Displaying 2 results from an estimated 2 matches for "balloon_s".
Did you mean:
balloon's
2007 Jul 12
2
unresolved symbols in PV driver for HVM
all,
On latest tip, following symbols are unresolved when inserting modules
xen_balloon: Unknown symbol totalhigh_pages
xen_vnif: Unknown symbol netfront_accelerator_call_resume
xen_vnif: Unknown symbol netfront_accelerator_call_suspend_cancel
xen_vnif: Unknown symbol netfront_accelerator_call_stop_napi_irq
xen_vnif: Unknown symbol balloon_update_driver_allowance
xen_vnif: Unknown symbol
2010 Aug 12
13
[PATCH] GSoC 2010 - Memory hotplug support for Xen guests - third fully working version
...are there many differences between pv and hvm?
No. Only those changes are needed where
xen_domain()/xen_pv_domain() is used.
> >>>+#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
> >>>+static inline unsigned long current_target(void)
> >>>+{
> >>>+ return balloon_stats.target_pages;
> >>Why does this need its own version?
> >Because original version return values not bigger
> >then initial memory allocation which does not allow
> >memory hotplug to function.
>
> But surely they can be combined? A system without
> XEN_BALLO...