search for: iomem_caps_readwrite

Displaying 1 result from an estimated 1 matches for "iomem_caps_readwrite".

2006 Dec 01
1
[PATCH 2/10] Add support for netfront/netback acceleration drivers
...1:46 2006 +0000 +++ b/xen/common/domain.c Fri Dec 01 16:22:41 2006 +0000 @@ -160,9 +160,14 @@ struct domain *domain_create(domid_t dom if ( arch_domain_create(d) != 0 ) goto fail3; - d->iomem_caps = rangeset_new(d, "I/O Memory", RANGESETF_prettyprint_hex); + d->iomem_caps_readwrite = rangeset_new(d, "I/O Memory RW", + RANGESETF_prettyprint_hex); + d->iomem_caps_readonly = rangeset_new(d, "I/O Memory RO", + RANGESETF_prettyprint_hex); d->irq_caps = rangeset_...