search for: intf

Displaying 20 results from an estimated 145 matches for "intf".

Did you mean: int
2008 Aug 21
0
kickstart error on 5.2 exception
...nda) File "/usr/lib/anaconda/dispatch.py", line 124, in gotoNext self.moveStep() File "/usr/lib/anaconda/gui.py", line 1018, in nextClicked self.anaconda.dispatch.gotoNext() File "/usr/lib/anaconda/iw/progress_gui.py", line 243, in renderCallback self.intf.icw.nextClicked() File "/usr/lib/anaconda/gui.py", line 1045, in handleRenderCallback self.currentWindow.renderCallback() AttributeError: 'module' object has no attribute 'pumpNetDevice' Local variables in innermost frame: self: <network.Network instance at 0x2b2...
2009 Apr 01
6
[Bug 589] New: MARK doesn't work properly with incoming traffic
...are the scripts I use to change the ip route tables, ip rules and iptables rules: ----------------------------------------------------------------- ------------------TOS-------------------------------------------- ----------------------------------------------------------------- #!/bin/sh task=0 intf=0 show_rules=0 args=$# # Check for arguments if test $args -eq 0 then task=usage elif test $args -eq 1 then if test $1 = clear then task=clear else task=usage fi elif test $args -eq 2 then if test $1 = start t...
2016 Jan 29
2
generate interface MAC addresses in a particular order
...ault no NICs are present in the configuration) you can add any number of interfaces to it (as long as they exist on the host). To do that, I edit the configuration xlm: vmXml = self.domain.XMLDesc() root = ET.fromstring(vmXml) devices = root.find('./devices') intf = ET.SubElement(devices,'interface') intf.set('type', 'bridge') src = ET.SubElement(intf,'source') src.set('bridge', bIntf) model = ET.SubElement(intf,'model') model.set('type', 'e1000')...
2011 Feb 04
5
[PATCH] kdump: introduce "reset_devices" command line option
upstream commit 7e96287ddc4f42081e18248b6167041c0908004c Author: Vivek Goyal <vgoyal@in.ibm.com> [PATCH] kdump: introduce "reset_devices" command line option Resetting the devices during driver initialization can be a costly operation in terms of time (especially scsi devices). This option can be used by drivers to know that user forcibly wants the devices to
2020 Nov 01
12
[PATCH mlx5-next v1 00/11] Convert mlx5 to use auxiliary bus
From: Leon Romanovsky <leonro at nvidia.com> Changelog: v1: * Renamed _mlx5_rescan_driver to be mlx5_rescan_driver_locked like in other parts of the mlx5 driver. * Renamed MLX5_INTERFACE_PROTOCOL_VDPA to tbe MLX5_INTERFACE_PROTOCOL_VNET as a preparation to coming series from Eli C. * Some small naming renames in mlx5_vdpa. * Refactored adev index code to make Parav's SF series
2016 Feb 01
1
Re: generate interface MAC addresses in a particular order
...> interfaces to it (as long as they exist on the host). > > To do that, I edit the configuration xlm: > > > > vmXml = self.domain.XMLDesc() > > root = ET.fromstring(vmXml) > > devices = root.find('./devices') > > > > intf = ET.SubElement(devices,'interface') > > intf.set('type', 'bridge') > > src = ET.SubElement(intf,'source') > > src.set('bridge', bIntf) > > model = ET.SubElement(intf,'model') > > m...
2012 Jul 03
13
[PATCH] various Xen fixes for v3.6 (v1).
I am working on some other bugs and perf issues - and while working I noticed that both sparse and Coverity have reported some issues with Xen drivers. Please see attached various bug-fixes that I am proposing for 3.6.
2007 Sep 30
6
Switching to user mode from domU kernel
I''m having trouble switching into user mode with my domU kernel -- everytime I call __HYPERVISOR_iret, the hypervisor calls into my kernel via the registered callback handler. None of the bits in the event channel pending arrays are set. If I return via the iret call, the hypervisor immediately calls back into the handler. The user RIP never changes, so it is clearly not making forward
2008 Feb 14
2
kickstart file problem
...e is the error, the script follows. Traceback (most recent call first): File "/usr/lib/anaconda/kickstart.py", line 82, in run os.unlink(path) File "/usr/lib/anaconda/kickstart.py", line 781, in <lambda> map (lambda s: s.run(anaconda.rootPath, serial, anaconda.intf), postScripts) File "/usr/lib/anaconda/kickstart.py", line 781, in postAction map (lambda s: s.run(anaconda.rootPath, serial, anaconda.intf), postScripts) File "/tmp/treedir.17875/instimage/usr/lib/anaconda/packages.py", line 44, in doPostAction anaconda.id.instClass...
2016 Jan 31
0
Re: generate interface MAC addresses in a particular order
...ation) you can add any number of > interfaces to it (as long as they exist on the host). > To do that, I edit the configuration xlm: > > vmXml = self.domain.XMLDesc() > root = ET.fromstring(vmXml) > devices = root.find('./devices') > > intf = ET.SubElement(devices,'interface') > intf.set('type', 'bridge') > src = ET.SubElement(intf,'source') > src.set('bridge', bIntf) > model = ET.SubElement(intf,'model') > model.set('type',...
2005 May 21
10
pb with iptables snat script
hi list, oh it''s not really a problem. Each time i fire shorewall, i run a custom iptables script: (for the openvpn machines to have route back from my bridge/fw - $SOURCEIP is the ip of my OpenVPN/Fw/bridge) iptables -A POSTROUTING -t nat -s 10.8.0.0/16 -j SNAT --to-source $SOURCEIP i wish to better integrate it within shorewall, so is there any config files that could achieve the
2015 Dec 20
5
new barrier type for paravirt (was Re: [PATCH] virtio_ring: use smp_store_mb)
...a /after/ reading the consumer index. * */ mb(); memcpy(dst, data, avail); data += avail; len -= avail; /* Other side must not see new producer until data is * there. */ wmb(); intf->req_prod += avail; /* Implies mb(): other side will see the updated producer. */ notify_remote_via_evtchn(xen_store_evtchn); To me, it looks like for guests compiled with CONFIG_SMP, smp_wmb and smp_mb would be sufficient, so mb() and wmb() here...
2015 Dec 20
5
new barrier type for paravirt (was Re: [PATCH] virtio_ring: use smp_store_mb)
...a /after/ reading the consumer index. * */ mb(); memcpy(dst, data, avail); data += avail; len -= avail; /* Other side must not see new producer until data is * there. */ wmb(); intf->req_prod += avail; /* Implies mb(): other side will see the updated producer. */ notify_remote_via_evtchn(xen_store_evtchn); To me, it looks like for guests compiled with CONFIG_SMP, smp_wmb and smp_mb would be sufficient, so mb() and wmb() here...
2011 Jul 13
1
PXE booting centos6
...withFuncDo(anaconda, lambda r: self.ayum.doRepoSetup(thisrepo=r.id), File &quot;/usr/lib/anaconda/yuminstall.py&quot;, line 1313, in __withFuncDo fn(repo) File &quot;/usr/lib/anaconda/yuminstall.py&quot;, line 1285, in doRepoSetup callback=RepoSetupPulseProgress(anaconda.intf)) File &quot;/usr/lib/anaconda/yuminstall.py&quot;, line 1243, in doBackendSetup self.doRepoSetup(anaconda) File &quot;/usr/lib/anaconda/backend.py&quot;, line 285, in doBackendSetup if anaconda.backend.doBackendSetup(anaconda) == DISPATCH_BACK: File &quot;/usr/lib...
2009 Sep 05
1
FreeBSD, NUT OmniVS1500
...box. So far, no luck. Some info: FreeBSD 6.3 libusb 0.1.12 NUT 2.4.1 Here's full debugging output. Searching on some of these errors has gotten me a few hits, but no fixes. If this is not a problem in FreeBSD 7, I'll upgrade. Two things that stand out: USB error: could not set alt intf 0/0: Invalid argument and USB error: error reading from interrupt endpoint /dev/ugen0.1: Resource temporarily unavailable Thanks, Charles [root at miko /usr/local/etc]# USB_DEBUG=5 /usr/local/libexec/nut/tripplite_usb -a colo1 -DDDDD 2>&1 |more debug level is '5' usb_set_debug:...
2012 May 23
17
[PATCH] bug-fixes to hvc-xen driver in v3.4 (and earlier).
Three of the patches could be squashed in one, but it makes more sense to review them as three. These patches fix the case of an PVHVM guest not being able to resume propely b/c of hitting: 142 BUG_ON(info->type != IRQT_UNBOUND && info->type != type); (in events.c) and also adds a WARN to catch situations like these. The reason for this is that the Xen python toolstack
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 -
2011 Nov 29
6
[OCAML 0/7] V4 or so of the xen ocaml packaging patches
Here is the latest version of the patches to package the ocaml libraries. Changes since last time: * rename the packages from libxen-4.1-ocaml* to libxen-ocaml* - we wont be looking to install multiple concurrent versions of the same package, so the version doesn't need to be in the package name * Removed superfluous GENCONTROL definitions - dh_ocaml does what we need * Removed
2015 Dec 31
0
[PATCH v2 33/34] xenbus: use virt_xxx barriers
...e(const void *data, unsigned len) avail = len; /* Must write data /after/ reading the consumer index. */ - mb(); + virt_mb(); memcpy(dst, data, avail); data += avail; len -= avail; /* Other side must not see new producer until data is there. */ - wmb(); + virt_wmb(); intf->req_prod += avail; /* Implies mb(): other side will see the updated producer. */ @@ -180,14 +180,14 @@ int xb_read(void *data, unsigned len) avail = len; /* Must read data /after/ reading the producer index. */ - rmb(); + virt_rmb(); memcpy(data, src, avail); data += ava...
2015 Dec 30
0
[PATCH 31/34] xenbus: use __smp_XXX barriers
...const void *data, unsigned len) avail = len; /* Must write data /after/ reading the consumer index. */ - mb(); + __smp_mb(); memcpy(dst, data, avail); data += avail; len -= avail; /* Other side must not see new producer until data is there. */ - wmb(); + __smp_wmb(); intf->req_prod += avail; /* Implies mb(): other side will see the updated producer. */ @@ -180,14 +180,14 @@ int xb_read(void *data, unsigned len) avail = len; /* Must read data /after/ reading the producer index. */ - rmb(); + __smp_rmb(); memcpy(data, src, avail); data += av...