Does xcp supports assignment of USB or xen-api ? I know that spice allows for USB redirection. Also remote desktop supports redirection of devices. I like using android devices with xen hosted servers as remote desktop exports my SD cards to server. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
On Wed, Apr 10, 2013 at 09:28:56AM -0600, jacek burghardt wrote:> Does xcp supports assignment of USB or xen-api ? I know that spice allows > for USB redirection. Also remote desktop supports redirection of devices. > I like using android devices with xen hosted servers as remote desktop > exports my SD cards to server.Hello, You forgot to write the subject to the email and add CC to xen-api :) afaik xapi doesn''t support USB passthrough. -- Pasi
Brian Menges
2013-Apr-11 07:31 UTC
Is: SKB_MAX_LEN bites again. Was: Re: bug disabling guest interface
Seems I''m completely bitten by this as well. I did notice one difference though between our old production kernel, and the new one that I''m trying to run (Linux 3.8.6) Looking into sources for 3.2.14-gogrid, I see: struct sk_buff; /* To allow 64K frame to be packed as single skb without frag_list. Since * GRO uses frags we allocate at least 16 regardless of page size. */ #if (65536/PAGE_SIZE + 2) < 16 #define MAX_SKB_FRAGS 16UL #else #define MAX_SKB_FRAGS (65536/PAGE_SIZE + 2) #endif Looking into sources for 3.8.6-gogrid I see: struct sk_buff; /* To allow 64K frame to be packed as single skb without frag_list we * require 64K/PAGE_SIZE pages plus 1 additional page to allow for * buffers which do not start on a page boundary. * * Since GRO uses frags we allocate at least 16 regardless of page * size. */ #if (65536/PAGE_SIZE + 1) < 16 #define MAX_SKB_FRAGS 16UL #else #define MAX_SKB_FRAGS (65536/PAGE_SIZE + 1) #endif I''m supposing that we could change both instances of ''+1'' to ''+2'' and see if this temporarily patches us until netback (???) is patched up. - Brian Menges Principal Engineer, DevOps GoGrid | ServePath | ColoServe | UpStream Networks The information contained in this message, and any attachments, may contain confidential and legally privileged material. It is solely for the use of the person or entity to which it is addressed. Any review, retransmission, dissemination, or action taken in reliance upon this information by persons or entities other than the intended recipient is prohibited. If you receive this in error, please contact the sender and delete the material from any computer.