search for: __net

Displaying 20 results from an estimated 23 matches for "__net".

Did you mean: __new
2002 May 14
4
iproute compile error
...dr'' /usr/include/arpa/inet.h:35: warning: data definition has no type or storage class /usr/include/arpa/inet.h:38: parse error before `inet_lnaof'' /usr/include/arpa/inet.h:38: warning: data definition has no type or storage class /usr/include/arpa/inet.h:42: parse error before `__net'' /usr/include/arpa/inet.h:46: parse error before `inet_netof'' /usr/include/arpa/inet.h:46: warning: data definition has no type or storage class /usr/include/arpa/inet.h:50: parse error before `inet_network'' /usr/include/arpa/inet.h:50: warning: data definition has no ty...
2003 Feb 24
0
Iproute2 ''Makefile options'' in 2.5.59
...'' /usr/include/arpa/inet.h:35: warning: data definition has no type or storage class /usr/include/arpa/inet.h:38: parse error before `inet_lnaof'' /usr/include/arpa/inet.h:38: warning: data definition has no type or storage class /usr/include/arpa/inet.h:42: parse error before `__net'' /usr/include/arpa/inet.h:46: parse error before `inet_netof'' /usr/include/arpa/inet.h:46: warning: data definition has no type or storage class /usr/include/arpa/inet.h:50: parse error before `inet_network'' /usr/include/arpa/inet.h:50: warning: data definition has no...
2009 Dec 21
2
[PATCH] Fixed errors when the user selects a different remove libvirt host.
...s None: url = get_default_url() logging.info("Connecting to libvirt: %s" % url) + self.__url = None + self.__conn = None self.open_connection(url) self.__capabilities = virtinst.CapabilitiesParser.parse(self.__conn.getCapabilities()) self.__net = virtinst.VirtualNetworkInterface(conn = self.__conn) @@ -84,9 +86,21 @@ class LibvirtWorker: '''Returns the underlying connection.''' return self.__conn + def get_url(self): + return self.__url + def open_connection(self, url): &...
2014 Mar 24
2
[Bug 910] New: Segmentation Fault
...roto_icmp (ct=ct at entry=0x127fe40, n=n at entry=0x635240) at build.c:150 No locals. #2 0x0000000000414f97 in ct2msg (ct=0x127fe40, n=n at entry=0x635240) at build.c:228 l4proto = 58 ':' #3 0x000000000040ed4e in cache_ct_build_msg (obj=0x179dd80, type=0) at cache-ct.c:326 __net = "\020\000,\000\257\271JY\000\f\000\000dG\026z \001\a\300\000\b\000\005\000\000\001\230\000\005\000\002:\000\000\000\000\005\000\026\334\000\000\000\000\b\000\006\000\000\000\036\000\b\000\006\000\000\000<\000\b\000\f\212\372H\215\000\b\000\033ftp\000\000\b\000\006\000\000\000\035\000\006\...
2009 Oct 26
0
[PATCH node] Users can now work with remote libvirt hosts.
...) + def __init__(self, url = None): + if url is None: url = get_default_url() + logging.info("Connecting to libvirt: %s" % url) + self.open_connection(url) self.__capabilities = virtinst.CapabilitiesParser.parse(self.__conn.getCapabilities()) self.__net = virtinst.VirtualNetworkInterface(conn = self.__conn) self.__net.setup(self.__conn) (self.__new_guest, self.__new_domain) = virtinst.CapabilitiesParser.guest_lookup(conn = self.__conn) + def open_connection(self, url): + '''Lets the user change the url for...
2009 Dec 03
1
Rebased against next...
This set of patches have been rebased since the originals have grown stale.
2009 Nov 11
1
Combined patch set for migration...
This patch set includes both the host configuration patch and the node migration patch which depends on it. And the latter has a fix for missing files.
2009 Oct 28
1
[PATCH] Users can now work with remote libvirt hosts.
...) + def __init__(self, url = None): + if url is None: url = get_default_url() + logging.info("Connecting to libvirt: %s" % url) + self.open_connection(url) self.__capabilities = virtinst.CapabilitiesParser.parse(self.__conn.getCapabilities()) self.__net = virtinst.VirtualNetworkInterface(conn = self.__conn) self.__net.setup(self.__conn) (self.__new_guest, self.__new_domain) = virtinst.CapabilitiesParser.guest_lookup(conn = self.__conn) + def open_connection(self, url): + '''Lets the user change the url for...
2009 Dec 08
2
Rebased patches, fixed a rebasing problem...
The previous patch set had an error and one development branch's changes showed up twice, and two different change sets. So it was missing the bulk of the configuration work. This patch set fixes that.
2009 Oct 15
1
Patch depends on the previous storage patch...
This patch is dependant on the previously submitted storage admin patch.
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 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 Apr 07
0
[RFC 3/3] virtio-iommu: future work
...el: MEM__pIOMMU___PCI device HARDWARE | | -------|---------|------+-------------+------------------------------- | | : KVM : pIOMMU drv | : : KERNEL \__net drv : : | : : tap : : | : : _vhost-net________________________virtio-net drv (2) / : : / (1a) / :...
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 Oct 27
1
Storage admin patches
This set of patches supercedes the previous set, and has been rebased with changes from upstream.
2009 Nov 09
1
Rebased again...
This patch again rebases on upstream and should apply on next as of right now.
2009 Oct 14
0
[PATCH node] Provides a new storage administration system to the managed node.
...eMeter()) self.set_finished() def get_back_page(self, page): diff --git a/nodeadmin/libvirtworker.py b/nodeadmin/libvirtworker.py index ba07605..b2acabe 100644 --- a/nodeadmin/libvirtworker.py +++ b/nodeadmin/libvirtworker.py @@ -35,6 +35,10 @@ class LibvirtWorker: self.__net.setup(self.__conn) (self.__new_guest, self.__new_domain) = virtinst.CapabilitiesParser.guest_lookup(conn = self.__conn) + def get_connection(self): + '''Returns the underlying connection.''' + return self.__conn + def list_domains(self, defin...