search for: _devices

Displaying 5 results from an estimated 5 matches for "_devices".

Did you mean: devices
2006 Apr 28
2
Device 0 (vif) could nto be connected: backend device not found
...I get this error when I do try to create a domU guest (xen 3.0.0, 2.6.12.6). The vif is set to vif = [ '' mac=aa:00:00:00:11, bridge=xenbr0'' ] and a "brctl show" shows xenbr0 8000,fefffffff interfaces vif0.0 peth0 Xend.log shows: ERROR (SrvBase:87) Request wait_for_devices failed. Traceback (most recent call last): File "/usr/lib/python/xen/web/SrvBase.py", line 85, in perform return op_method(op, req) File "/usr/lib/python/xen/xend/server/SrvDomain.py", line 72, in op_wait_for _devices return self.dom.waitForDevices() Fi...
2007 Apr 18
2
[Bridge] bridge-utils + Linksys WET11
...at wireless NICs would cause issues, but that shouldn't be the case here, since the router doesn't even know it's wireless, should it? Is this some sort of stp issue? Any suggestions would be much appreciated. I'm out of ideas. #!/bin/bash # bridge="br100" bridge_br100_devices="eth1 eth2 eth3 eth4" bridge_br100_ip="192.168.1.1" return=$rc_done case "$1" in start) for b in ${bridge} do echo "Create Bridge ${b}" /usr/sbin/brctl addbr ${b} || { retval=$?...
2013 Dec 03
22
[PATCH] xen/pvhvm: If xen_platform_pci=0 is set don''t blow up.
...eletions(-) diff --git a/arch/x86/xen/platform-pci-unplug.c b/arch/x86/xen/platform-pci-unplug.c index 0a78524..087dfeb 100644 --- a/arch/x86/xen/platform-pci-unplug.c +++ b/arch/x86/xen/platform-pci-unplug.c @@ -69,6 +69,24 @@ static int check_platform_magic(void) return 0; } +bool xen_has_pv_devices(void) +{ + if (!xen_domain()) + return false; + + if (xen_hvm_domain()) { + /* User requested no unplug, so no PV drivers. */ + if (xen_emul_unplug & XEN_UNPLUG_NEVER) + return false; + /* And user has xen_platform_pci=0 set in guest config as + * driver did not modify the value. */ +...
2013 Oct 20
1
error cant write to function ODBC_DEVICES
...all.id = devices.callId WHERE deviceNumber = '${ SQL_ESC(${ARG1})}' writesql=insert into voted (callId,callNum,city,deviceId,SerialNum, serverResponse) values (${VAL1},"${VAL2}",${VAL3},${VAL4},${VAL5},"${VAL6}" extension.conf the relevant line same => n,set(ODBC_DEVICES()=${callid},${call},1,${deviceid},${num},${ serverupdate}) when sending the values from the cli using odbc write it works ok reading from the dialplan works ok i tried sending plain values without variables but from the dialplan gives me a error " cant write to function ODBC _DEVICES"...
2006 Apr 28
0
Re: SOLVED: Device 0 (vif) could nto be connected: backend device not found
...12.6). > > The vif is set to > > vif = [ '' mac=aa:00:00:00:11, bridge=xenbr0'' ] > > and a "brctl show" shows > > xenbr0 8000,fefffffff interfaces vif0.0 peth0 > > > > Xend.log shows: > > ERROR (SrvBase:87) Request wait_for_devices failed. Traceback (most recent > call last): > > File "/usr/lib/python/xen/web/SrvBase.py", line 85, in perform > > return op_method(op, req) > > File "/usr/lib/python/xen/xend/server/SrvDomain.py", line 72, in > op_wait_for _devices &gt...