From: Keir Fraser Date: Thu, 7 Feb 2008 09:15:59 +0000 (+0000) Subject: minios: Support net/block backend in domU X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=083980550a35413b7c0806f9d2cf7a3d4c0b1b06;p=people%2Fliuw%2Flibxenctrl-split%2Fmini-os.git minios: Support net/block backend in domU Signed-off-by: Samuel Thibault --- diff --git a/blkfront.c b/blkfront.c index 0c77d6d..f079005 100644 --- a/blkfront.c +++ b/blkfront.c @@ -35,6 +35,8 @@ struct blk_buffer { }; struct blkfront_dev { + domid_t dom; + struct blkif_front_ring ring; grant_ref_t ring_ref; evtchn_port_t evtchn, local_port; @@ -81,24 +83,24 @@ struct blkfront_dev *init_blkfront(char *nodename, uint64_t *sectors, unsigned * dev = malloc(sizeof(*dev)); dev->nodename = strdup(nodename); - s = (struct blkif_sring*) alloc_page(); - memset(s,0,PAGE_SIZE); - - - SHARED_RING_INIT(s); - FRONT_RING_INIT(&dev->ring, s, PAGE_SIZE); - - dev->ring_ref = gnttab_grant_access(0,virt_to_mfn(s),0); - evtchn_alloc_unbound_t op; op.dom = DOMID_SELF; snprintf(path, sizeof(path), "%s/backend-id", nodename); - op.remote_dom = xenbus_read_integer(path); + dev->dom = op.remote_dom = xenbus_read_integer(path); HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound, &op); clear_evtchn(op.port); /* Without, handler gets invoked now! */ dev->local_port = bind_evtchn(op.port, blkfront_handler, dev); dev->evtchn=op.port; + s = (struct blkif_sring*) alloc_page(); + memset(s,0,PAGE_SIZE); + + + SHARED_RING_INIT(s); + FRONT_RING_INIT(&dev->ring, s, PAGE_SIZE); + + dev->ring_ref = gnttab_grant_access(dev->dom,virt_to_mfn(s),0); + // FIXME: proper frees on failures again: err = xenbus_transaction_start(&xbt); @@ -280,7 +282,7 @@ void blkfront_aio(struct blkfront_aiocb *aiocbp, int write) barrier(); } aiocbp->gref[j] = req->seg[j].gref = - gnttab_grant_access(0, virtual_to_mfn(data), write); + gnttab_grant_access(dev->dom, virtual_to_mfn(data), write); req->seg[j].first_sect = 0; req->seg[j].last_sect = PAGE_SIZE / dev->sector_size - 1; } diff --git a/netfront.c b/netfront.c index a0a3708..e3c56c1 100644 --- a/netfront.c +++ b/netfront.c @@ -33,6 +33,8 @@ struct net_buffer { }; struct netfront_dev { + domid_t dom; + unsigned short tx_freelist[NET_TX_RING_SIZE]; struct semaphore tx_sem; @@ -141,7 +143,7 @@ moretodo: /* We are sure to have free gnttab entries since they got released above */ buf->gref = req->gref = - gnttab_grant_access(0,virt_to_mfn(page),0); + gnttab_grant_access(dev->dom,virt_to_mfn(page),0); req->id = id; } @@ -258,6 +260,15 @@ struct netfront_dev *init_netfront(char *nodename, void (*thenetif_rx)(unsigned dev->rx_buffers[i].page = (char*)alloc_page(); } + evtchn_alloc_unbound_t op; + op.dom = DOMID_SELF; + snprintf(path, sizeof(path), "%s/backend-id", nodename); + dev->dom = op.remote_dom = xenbus_read_integer(path); + HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound, &op); + clear_evtchn(op.port); /* Without, handler gets invoked now! */ + dev->local_port = bind_evtchn(op.port, netfront_handler, dev); + dev->evtchn=op.port; + txs = (struct netif_tx_sring*) alloc_page(); rxs = (struct netif_rx_sring *) alloc_page(); memset(txs,0,PAGE_SIZE); @@ -269,17 +280,8 @@ struct netfront_dev *init_netfront(char *nodename, void (*thenetif_rx)(unsigned FRONT_RING_INIT(&dev->tx, txs, PAGE_SIZE); FRONT_RING_INIT(&dev->rx, rxs, PAGE_SIZE); - dev->tx_ring_ref = gnttab_grant_access(0,virt_to_mfn(txs),0); - dev->rx_ring_ref = gnttab_grant_access(0,virt_to_mfn(rxs),0); - - evtchn_alloc_unbound_t op; - op.dom = DOMID_SELF; - snprintf(path, sizeof(path), "%s/backend-id", nodename); - op.remote_dom = xenbus_read_integer(path); - HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound, &op); - clear_evtchn(op.port); /* Without, handler gets invoked now! */ - dev->local_port = bind_evtchn(op.port, netfront_handler, dev); - dev->evtchn=op.port; + dev->tx_ring_ref = gnttab_grant_access(dev->dom,virt_to_mfn(txs),0); + dev->rx_ring_ref = gnttab_grant_access(dev->dom,virt_to_mfn(rxs),0); dev->netif_rx = thenetif_rx; @@ -416,7 +418,7 @@ void init_rx_buffers(struct netfront_dev *dev) req = RING_GET_REQUEST(&dev->rx, requeue_idx); buf->gref = req->gref = - gnttab_grant_access(0,virt_to_mfn(buf->page),0); + gnttab_grant_access(dev->dom,virt_to_mfn(buf->page),0); req->id = requeue_idx; @@ -461,7 +463,7 @@ void netfront_xmit(struct netfront_dev *dev, unsigned char* data,int len) memcpy(page,data,len); buf->gref = - tx->gref = gnttab_grant_access(0,virt_to_mfn(page),0); + tx->gref = gnttab_grant_access(dev->dom,virt_to_mfn(page),1); tx->offset=0; tx->size = len;