Displaying 20 results from an estimated 10000 matches similar to: "Windows Doa"
2018 Mar 09
2
[PATCH net] vhost_net: examine pointer types during un-producing
After commit 761876c857cb ("tap: XDP support"), we can actually
queueing XDP pointers in the pointer ring, so we should examine the
pointer type before freeing the pointer.
Fixes: 761876c857cb ("tap: XDP support")
Reported-by: Michael S. Tsirkin <mst at redhat.com>
Signed-off-by: Jason Wang <jasowang at redhat.com>
---
drivers/net/tun.c | 3 ++-
2018 Sep 06
1
[PATCH net-next 08/11] tun: switch to new type of msg_control
On Thu, Sep 06, 2018 at 12:05:23PM +0800, Jason Wang wrote:
> This patch introduces to a new tun/tap specific msg_control:
>
> #define TUN_MSG_UBUF 1
> #define TUN_MSG_PTR 2
> struct tun_msg_ctl {
> int type;
> void *ptr;
> };
>
> This allows us to pass different kinds of msg_control through
> sendmsg(). The first supported type is ubuf
2009 Nov 02
1
[PATCHv6 1/3] tun: export underlying socket
Tun device looks similar to a packet socket
in that both pass complete frames from/to userspace.
This patch fills in enough fields in the socket underlying tun driver
to support sendmsg/recvmsg operations, and message flags
MSG_TRUNC and MSG_DONTWAIT, and exports access to this socket
to modules. Regular read/write behaviour is unchanged.
This way, code using raw sockets to inject packets
into
2009 Nov 02
1
[PATCHv6 1/3] tun: export underlying socket
Tun device looks similar to a packet socket
in that both pass complete frames from/to userspace.
This patch fills in enough fields in the socket underlying tun driver
to support sendmsg/recvmsg operations, and message flags
MSG_TRUNC and MSG_DONTWAIT, and exports access to this socket
to modules. Regular read/write behaviour is unchanged.
This way, code using raw sockets to inject packets
into
2017 Mar 21
12
[PATCH net-next 0/8] vhost-net rx batching
Hi all:
This series tries to implement rx batching for vhost-net. This is done
by batching the dequeuing from skb_array which was exported by
underlayer socket and pass the sbk back through msg_control to finish
userspace copying.
Tests shows at most 19% improvment on rx pps.
Please review.
Thanks
Jason Wang (8):
ptr_ring: introduce batch dequeuing
skb_array: introduce batch dequeuing
2017 Mar 21
12
[PATCH net-next 0/8] vhost-net rx batching
Hi all:
This series tries to implement rx batching for vhost-net. This is done
by batching the dequeuing from skb_array which was exported by
underlayer socket and pass the sbk back through msg_control to finish
userspace copying.
Tests shows at most 19% improvment on rx pps.
Please review.
Thanks
Jason Wang (8):
ptr_ring: introduce batch dequeuing
skb_array: introduce batch dequeuing
2005 Nov 01
2
vif-antispoof
Hi folks,
I started testing the antispoof feature of xen stable (2.0.7). I am
stuck with it.
I have setup a standard bridged environment.
I understood it like this: in domU config I set up the virtual NIC like
vif = [ ''mac=ae:00:00:78:78:78, ip=192.168.0.100'' ]
Then I configure /etc/network/interface of this domU to show the same IP
address for eth0.
After restarting
2012 Mar 19
4
network problems
Hi,
i have problems with the network between pv-domains and the real network.
I done an upgrade with apt-get in debian an now i have xen4.1 with
kernel 3.2.9
first i must chance the vif-bridge script from
http://nopaste.php-q.net/194087
to
http://nopaste.php-q.net/194084
now i have a connection from pv to dom0 and the windows hvm, but no
connection between physical network an the pv
2010 Jun 21
4
Gentoo+Xen4.0: Error: coercing to Unicode: need string or buffer, NoneType found.
Hi,
I''m trying to use a Gentoo whit Xem 4.0, but I try: xm create
windows2008r2.hvm I get the error: Error: coercing to Unicode: need
string or buffer, NoneType found.
Does anybody knows how to solve that?
windows2008r2.hvm:
kernel = "hvmloader"
builder=''hvm''
memory = 512
name = "Windows2008R2"
vcpus=2
acpi=1
apic=1
disk = [
2010 Jul 21
13
sda instead of xvda ?`
Hi,
how can i passthroughs HDD with sda instead of xvda ?
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2010 Aug 10
4
[PATCH] Values of cpu_weight and cpu_cap are lost after xend restart
# HG changeset patch
# User Lutz.Dube
# Node ID ca2c8c262dbaa6b2521cec60af7cd688dabdf850
# Parent 8992134dcfd0b9e1e86f4111e68a8aa48bd33c3c
Values of cpu_weight and cpu_cap are lost after xend restart
For managed domains in state ''halted'' I always get default values
for cpu_cap / cpu_weight after xend restart.
This is because the names of parameters differ between a SXP file to
2018 Sep 06
22
[PATCH net-next 00/11] Vhost_net TX batching
Hi all:
This series tries to batch submitting packets to underlayer socket
through msg_control during sendmsg(). This is done by:
1) Doing userspace copy inside vhost_net
2) Build XDP buff
3) Batch at most 64 (VHOST_NET_BATCH) XDP buffs and submit them once
through msg_control during sendmsg().
4) Underlayer sockets can use XDP buffs directly when XDP is enalbed,
or build skb based on XDP
2013 Oct 09
3
Tinc Server and Raspberry PI (Rev. B).
Hi everybody and sorry by the insistence.
Nobody has working Tinc Server over a Raspberry in an environment in
production?
Best regards and sorry again,
Ramses
De: Ramses II [mailto:ramses.sevilla at gmail.com]
Enviado el: martes, 08 de octubre de 2013 17:59
Para: tinc at tinc-vpn.org
Asunto: Tinc Server and Raspberry PI (Rev. B).
Dear gentlemen,
I need configure a VPN
2018 Sep 12
14
[PATCH net-next V2 00/11] vhost_net TX batching
Hi all:
This series tries to batch submitting packets to underlayer socket
through msg_control during sendmsg(). This is done by:
1) Doing userspace copy inside vhost_net
2) Build XDP buff
3) Batch at most 64 (VHOST_NET_BATCH) XDP buffs and submit them once
through msg_control during sendmsg().
4) Underlayer sockets can use XDP buffs directly when XDP is enalbed,
or build skb based on XDP
2018 Sep 12
14
[PATCH net-next V2 00/11] vhost_net TX batching
Hi all:
This series tries to batch submitting packets to underlayer socket
through msg_control during sendmsg(). This is done by:
1) Doing userspace copy inside vhost_net
2) Build XDP buff
3) Batch at most 64 (VHOST_NET_BATCH) XDP buffs and submit them once
through msg_control during sendmsg().
4) Underlayer sockets can use XDP buffs directly when XDP is enalbed,
or build skb based on XDP
2016 Apr 18
1
migrating from xend to libxl after xen
> On Sat, Apr 16, 2016 at 5:40 PM, rgritzo <rgritzo at gmail.com <https://lists.centos.org/mailman/listinfo/centos-virt>> wrote:
> > so i guess i was not paying too close attention and upgraded to xen 4.6.1 before i migrated my domU configurations to libxl :{
>
> Just FYI, as a fall-back you can always move yourself to the Xen 4.4 "track" by:
> 1.
2007 Nov 21
3
Xen 3.1.0 and openSuse 10.3 - xenbr0 won''t dissapear
Hello,
I use xen for a few months now and I upgraded to opensuse 10.3 with xen
3.1 (64bit versions) recently.
Everything works fine, but there is a problem when I change
xend-config.sxp to use my own network script (it''s slightly modified
version of network-virtual scripts from
http://en.opensuse.org/Xen3_yet_another_Virtual_Network_Concept )
instead of default network-bridge script.
1998 May 22
0
SOLVED : (NEW Printing FAQ Question) : After almost every reboot, Samba printing is DOA under Solaris 2.6...
Ok.. Just a little follow-up on my Solaris printing problem that I was
having!
As it turns out, I put the fully-qualified path names to the print commands
(lpr/lpq/lprm, etc) in the samba config file (smb.conf) and all of my
printing
problems have disappeared! Now, after a clean reboot of the OS (Solaris,
not PC), I can log on to Samba and directly print -- instead of it silently
failing!
2002 Feb 23
0
Version 1.2.7 DOA
Please don''t download 1.2.7or install -- it''s quite broken. I''ll have
1.2.8 out shortly ....
-Tom
--
Tom Eastep \ Shorewall -- iptables made easy
AIM: tmeastep \ http://www.shorewall.net
ICQ: #60745924 \ teastep@shorewall.net
2010 Oct 06
2
ADA: DOA?
Hey, all. While ADA can still be downloaded, that's about all that I see.
No development, no recent mention, and -- perhaps worst of all -- it
appears not to work properly under 64-bit systems. So, assuming Digium's
abandoned it, are there any suggestions of alternatives? Right now, I'm
replacing a Shoretel system, and I'd *dearly* love to avoid the incredibly
fat client they