search for: __config

Displaying 20 results from an estimated 37 matches for "__config".

2009 Oct 21
1
[PATCH node] Renamed files and menu items for node administration:
...uot; % amount_read) + + def _do_update(self, amount_read, now = None): + logging.info("Update: read=%d" % amount_read) + +class DomainConfigScreen(ConfigScreen): + def __init__(self): + ConfigScreen.__init__(self, "Create A New Virtual Machine") + self.__config = DomainConfig() + self.__config.set_architecture(self.get_libvirt().get_default_architecture()) + self.__config.set_virt_type(self.get_libvirt().get_default_virt_type()) + + def get_elements_for_page(self, screen, page): + if page == VM_DETAILS_PAGE: return self.get_...
2009 Oct 15
1
Patch depends on the previous storage patch...
This patch is dependant on the previously submitted storage admin patch.
2009 Nov 09
1
Rebased again...
This patch again rebases on upstream and should apply on next as of right now.
2009 Oct 27
1
Storage admin patches
This set of patches supercedes the previous set, and has been rebased with changes from upstream.
2009 Oct 14
0
[PATCH node] Provides a new storage administration system to the managed node.
...rt * +from poolconfig import PoolConfig +from virtinst import Storage + +POOL_NAME_PAGE = 1 +POOL_DETAILS_PAGE = 2 +CONFIRM_PAGE = 3 + +class AddStoragePoolConfigScreen(ConfigScreen): + def __init__(self): + ConfigScreen.__init__(self, "Add A Storage Pool") + self.__config = PoolConfig(self.get_libvirt()) + + def get_elements_for_page(self, screen, page): + if page is POOL_NAME_PAGE: return self.get_pool_name_page(screen) + elif page is POOL_DETAILS_PAGE: return self.get_pool_details_page(screen) + elif page is CONFIRM_PAGE: return s...
2009 Oct 21
1
Storage administration and refactoring of domain admin
This pair of patches provide a new storage admin interface. Then, on top of that, it refactors the domain administration pieces to now properly use storage pools and volumes when defining a new VM.
2009 Aug 31
1
Fixed patch...
This version of the patch includes feedback from jboggs at redhat.com, including fixes to the BuildRequires and Requires in the spec file.
2009 Jul 31
2
RFC: This patch is not being submitted for ACK...
...just looking for some feedback on the direction I'm going. The code won't get all the way to the define stage since I'm in the middle of retrofitting it to use virtinst instead of a home spun node definition.
2009 Sep 11
1
Text-based node administration tool
This patch obsoletes any previous ones. This is an upstream candidate, so I'm looking for feedback so we can push this and start using it.
2009 Sep 14
1
Bugfixes...
This version fixes a few bugs found by jboggs. It also includes some logging facilities that need to be fleshed out more.
2009 Sep 16
1
Final push candidate for nodeadmin tool...
This patch is ready for pushing upstream.
2009 Sep 16
1
Replacement that includes utils.py
The previous patch was missing this file. Resending.
2017 Jun 02
3
Failed to build libunwind the libcxx's __config header
I'm building LLVM with Clang, LLD, compiler-rt, libunwind, libcxx and libcxxabi. I'm using GCC 7.1.1 and binutils 2.28.0 to build. The compilation is aborted during libunwind build due to gcc not being able to parse libcxx's __config: /usr/bin/cc -DLLVM_BUILD_GLOBAL_ISEL -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -Iprojects/libunwind/src -I../projects/libunwind/src -Iinclude -I../include -I../projects/libunwind/include -I../projects/libcxx/include -fPIC -Werror=date-time -Wall -W -W...
2009 Oct 12
1
First draft: node storage admin
This patch provides the ability to create a "dir" type storage pool, and to add and remove volumes for existing pools.
2009 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
...E_PAGE = 5 +NETWORK_TYPE_PAGE = 6 +SELECT_PHYSICAL_NETWORK_PAGE = 7 +SUMMARY_PAGE = 8 + +class DefineNetworkConfigScreen(ConfigScreen): + def __init__(self): + ConfigScreen.__init__(self, "Create A Virtual Network Interface") + self.__config = NetworkConfig() + + def get_elements_for_page(self, screen, page): + if page is NETWORK_NAME_PAGE: return self.get_network_name_page(screen) + elif page is IPV4_ADDRESS_PAGE: return self.get_ipv4_address_page(screen) + elif page is PUBLIC_NETWORK_AL...
2013 May 13
2
[LLVMdev] ASan unit test/libcxx build break
A recent change added defined(__linux__) condition to the code below. Now it says that on linux with --std=c++0x (or --std=c++11) the system stdlib.h header must define aligned_alloc(). Really? include/__config: #if ( defined(__FreeBSD__) || defined(__linux__) ) && (__ISO_C_VISIBLE >= 2011 || __cplusplus >= 201103L) #define _LIBCPP_HAS_QUICK_EXIT #define _LIBCPP_HAS_C11_FEATURES #endif include/cstdlib: #include <__config> #include <stdlib.h> #ifdef _LIBCPP_HAS_C11_FEATURES us...
2013 May 13
0
[LLVMdev] ASan unit test/libcxx build break
...10:49 AM, Evgeniy Stepanov < eugeni.stepanov at gmail.com> wrote: > A recent change added defined(__linux__) condition to the code below. > Now it says that on linux with --std=c++0x (or --std=c++11) the system > stdlib.h header must define aligned_alloc(). Really? > > include/__config: > > #if ( defined(__FreeBSD__) || defined(__linux__) ) && (__ISO_C_VISIBLE > >= 2011 || __cplusplus >= 201103L) > #define _LIBCPP_HAS_QUICK_EXIT > #define _LIBCPP_HAS_C11_FEATURES > #endif > > I added that line since libc on linux defines at_quick_exit. &gt...
2014 Aug 12
4
[LLVMdev] Explicit template instantiations in libc++
Most of libc++ doesn't have explicit template instantiations, which leads to a pretty significant build time and code size cost when using libc++, since a large number of common templates will be emitted by the compiler and coalesced by the linker. Notably, in include/__config, we have: #ifndef _LIBCPP_EXTERN_TEMPLATE #define _LIBCPP_EXTERN_TEMPLATE(...) #endif whereas before r189601 this was: #define _LIBCPP_EXTERN_TEMPLATE(...) extern template __VA_ARGS__; This was apparently done to fix http://llvm.org/bugs/show_bug.cgi?id=17027, but disabling expl...
2017 Dec 19
2
RFC: Default path for cross-compiled runtimes
...and $prefix/lib as today. > > > > Once the overall scheme is agreed upon, we could also consider > > de-duplicating C++ headers across targets, by moving shared headers into > > a common directory, with only varying subset in include/$triple. > > At the very least the __config_site headers cannot be de-duplicated. > I think it should be sufficient to have separate __config headers for separate targets, that's really the only thing that differs. > Beyond that, I strongly disagree with de-duplicating them in general > because it will break --sysroot= unless...
2017 Dec 19
3
RFC: Default path for cross-compiled runtimes
...ing shared headers into a common directory, with only varying subset in include/$triple. To give an example, for x86_64 and aarch64 Linux, this would look like: $prefix/lib/clang/6.0.0/include/sanitizer $prefix/lib/clang/6.0.0/include/c++/v1 $prefix/lib/clang/6.0.0/include/x86_64-linux-gnu/c++/v1/__config ... $prefix/lib/clang/6.0.0/x86_64-linux-gnu/lib/libclang_rt.asan.so $prefix/lib/clang/6.0.0/x86_64-linux-gnu/lib/libc++.so ... $prefix/lib/clang/6.0.0/aarch64-linux-gnu/lib/libclang_rt.asan.so $prefix/lib/clang/6.0.0/aarch64-linux-gnu/lib/libc++.so ... -------------- next part -------------- An HT...