|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xsm/flask: Improve error reporting for ocontexts
# HG changeset patch
# User Daniel De Graaf <dgdegra@xxxxxxxxxxxxx>
# Date 1328195964 0
# Node ID 912bbca1a8e7bc93cfe492bc32a352dcd2bd477b
# Parent eaffacbba1d527a56d7bd52132e1b09a75dc624e
xsm/flask: Improve error reporting for ocontexts
Instead of returning -EINVAL for all errors, return -EEXIST if adding
an entry that overlaps with an existing entry, and -ENOENT if
attempting to remove an entry that does not exist. Adding an ocontext
that already exists with the same SID is no longer an error.
Signed-off-by: Daniel De Graaf <dgdegra@xxxxxxxxxxxxx>
Committed-by: Keir Fraser <keir@xxxxxxx>
---
diff -r eaffacbba1d5 -r 912bbca1a8e7 xen/xsm/flask/ss/services.c
--- a/xen/xsm/flask/ss/services.c Thu Feb 02 15:18:50 2012 +0000
+++ b/xen/xsm/flask/ss/services.c Thu Feb 02 15:19:24 2012 +0000
@@ -2084,8 +2084,10 @@
{
if ( c->u.pirq == add->u.pirq )
{
+ if ( c->sid[0] == sid )
+ break;
printk("%s: Duplicate pirq %d\n", __FUNCTION__, add->u.pirq);
- ret = -EINVAL;
+ ret = -EEXIST;
break;
}
c = c->next;
@@ -2112,10 +2114,14 @@
if (c && c->u.ioport.low_ioport <= high)
{
+ if (c->u.ioport.low_ioport == low &&
+ c->u.ioport.high_ioport == high && c->sid[0] == sid)
+ break;
+
printk("%s: IO Port overlap with entry 0x%x - 0x%x\n",
__FUNCTION__, c->u.ioport.low_ioport,
c->u.ioport.high_ioport);
- ret = -EINVAL;
+ ret = -EEXIST;
break;
}
@@ -2142,10 +2148,14 @@
if (c && c->u.iomem.low_iomem <= high)
{
+ if (c->u.iomem.low_iomem == low &&
+ c->u.iomem.high_iomem == high && c->sid[0] == sid)
+ break;
+
printk("%s: IO Memory overlap with entry 0x%x - 0x%x\n",
__FUNCTION__, c->u.iomem.low_iomem,
c->u.iomem.high_iomem);
- ret = -EINVAL;
+ ret = -EEXIST;
break;
}
@@ -2171,9 +2181,12 @@
{
if ( c->u.device == add->u.device )
{
+ if ( c->sid[0] == sid )
+ break;
+
printk("%s: Duplicate PCI Device 0x%x\n", __FUNCTION__,
add->u.device);
- ret = -EINVAL;
+ ret = -EEXIST;
break;
}
c = c->next;
@@ -2230,7 +2243,7 @@
}
printk("%s: ocontext not found: pirq %d\n", __FUNCTION__, low);
- ret = -EINVAL;
+ ret = -ENOENT;
break;
case OCON_IOPORT:
@@ -2257,7 +2270,7 @@
printk("%s: ocontext not found: ioport 0x%x - 0x%x\n", __FUNCTION__,
low, high);
- ret = -EINVAL;
+ ret = -ENOENT;
break;
case OCON_IOMEM:
@@ -2284,7 +2297,7 @@
printk("%s: ocontext not found: iomem 0x%x - 0x%x\n", __FUNCTION__,
low, high);
- ret = -EINVAL;
+ ret = -ENOENT;
break;
case OCON_DEVICE:
@@ -2309,7 +2322,7 @@
}
printk("%s: ocontext not found: pcidevice 0x%x\n", __FUNCTION__, low);
- ret = -EINVAL;
+ ret = -ENOENT;
break;
default:
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |