Displaying 2 results from an estimated 2 matches for "flgas".
Did you mean:
fleas
2008 Jan 31
5
Solaris DomU HVM Network issues
...:16:3e:35:68:ca''/>
</interface>
from #xm list solarisHVM -l
(device
(vif
(bridge )
(mac 00:16:3e:35:68:ca)
(type ioemu)
(uuid 35db826b-987a-b4cf-ae98-7d6a197e7650)
)
)
from within the domain
#ifconfig -a
rtls0: flgas-201000843<UP,BROADCAST, RUNNING,MULTICAST,IPv4,CoS> mtu
1500 index 2
inet 10.6.142.179 netmask ffffff00 broadcast 10.6.142.255
ether 0:16:3e:35:68:ca
From the output I can see that the rtls0 mac address in the domU is the
same from xm list and from the dumpxml on dom0. I d...
2008 Jul 11
1
Question about Using Grant Table
...setup_op.dom =DOMID_SELF;
setup_op.nr_frames = 1;
setup_op.frame_list = grant_table;
HYPERVISOR_grant_table_op(GNTTABOP_setup_table, &setup_op, 1);
/*offer the grant */
grant_table[0].domid=DOMID_FRIEND;
grant_table[0].frame = shared_page >>12;
flgas = GTF_permit_access & GTF_reading & GTF_writing;
grant_table[0].flags= flags;
}
and it also assume that the grant table entry have already been communicated via Xenstore.
My question is :
If I modify this code sample and use it in my own program, How can I handle...