search for: close_all_fil

Displaying 3 results from an estimated 3 matches for "close_all_fil".

Did you mean: close_all_files
2016 Feb 01
2
[PATCH 2/2] core: Fix stack overflow when reloading config
On 01/26/16 07:36, Celelibi via Syslinux wrote: > > From what I've seen, I think there are memory leaks a bit everywhere. > And it's practically unavoidable since modules are always forcefully > unloaded instead of letting them gracefully terminate. > > Then, as I already mentioned somewhere else, I think we would need a > global resource tracker so that when a
2008 Jun 06
0
[PATCH] stubdom: permit compilation without lwip
...s/main.c Fri Jun 06 11:28:09 2008 +0100 @@ -45,7 +44,9 @@ sparse((unsigned long) &__app_bss_start, &__app_bss_end - &__app_bss_start); +#ifdef HAVE_LWIP start_networking(); +#endif init_fs_frontend(); #ifdef CONFIG_QEMU if (!fs_import) { @@ -162,6 +163,9 @@ close_all_files(); __libc_fini_array(); printk("main returned %d\n", ret); +#ifdef HAVE_LWIP + stop_networking(); +#endif unbind_all_ports(); if (!ret) { /* No problem, just shutdown. */ _______________________________________________ Xen-devel mailing list Xen-devel@lists.xe...
2012 Jan 25
26
[PATCH v4 00/23] Xenstore stub domain
Changes from v3: - mini-os configuration files moved into stubdom/ - mini-os extra console support now a config option - Fewer #ifdefs - grant table setup uses hypercall bounce - Xenstore stub domain syslog support re-enabled Changes from v2: - configuration support added to mini-os build system - add mini-os support for conditionally compiling frontends, xenbus -