WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] network xmit from Plan 9

To: xen-devel@xxxxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] network xmit from Plan 9
From: ron minnich <rminnich@xxxxxxxx>
Date: Mon, 30 Aug 2004 13:34:31 -0600 (MDT)
Delivery-date: Mon, 30 Aug 2004 20:44:54 +0100
Envelope-to: steven.hand@xxxxxxxxxxxx
List-archive: <http://sourceforge.net/mailarchive/forum.php?forum=xen-devel>
List-help: <mailto:xen-devel-request@lists.sourceforge.net?subject=help>
List-id: List for Xen developers <xen-devel.lists.sourceforge.net>
List-post: <mailto:xen-devel@lists.sourceforge.net>
List-subscribe: <https://lists.sourceforge.net/lists/listinfo/xen-devel>, <mailto:xen-devel-request@lists.sourceforge.net?subject=subscribe>
List-unsubscribe: <https://lists.sourceforge.net/lists/listinfo/xen-devel>, <mailto:xen-devel-request@lists.sourceforge.net?subject=unsubscribe>
Sender: xen-devel-admin@xxxxxxxxxxxxxxxxxxxxx
First, I did hack up a bit of Supermon to just connect to the unix-domain
socket and let you type at it. I didn't realize it was this simple or
would have just done it, sorry for the silly questions. I thought there
was some vmware magic I just wasn't getting. Instead all I needed was this
"sockets for dummies" code :-)

I also fixed my silly problem with Plan 9 ethernet. 

I had this:
memmove(msg, &upe, sizeof(up));

but needed:
memmove(msg, &upe, sizeof(upe));

'up' is the Plan 9 version of current, it's a pointer, and so the whole 
struct was not getting copied. That missing 'e' was the problem. Stupid!

I'm now seeing the DHCP request on vifx.0 from Plan 9 to DOM0!

Anyways now for the receive side, assuming I get some time this week :-)

ron





-------------------------------------------------------
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] network xmit from Plan 9, ron minnich <=