[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-3.1-testing] xm: Fix xm vcpu-pin to complain for CPU numbers out of range.
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1203606902 0 # Node ID 4dc6caabd5faa4a7b4f7afcf7fe5c5c030d480f5 # Parent c374d4d0945c5b335d380e707936ccc0958d3950 xm: Fix xm vcpu-pin to complain for CPU numbers out of range. Signed-off-by: Masaki Kanno <kanno.masaki@xxxxxxxxxxxxxx> xen-unstable changeset: 17092:511ab2b89ced1e190c6c76139b60049b69be69ef xen-unstable date: Wed Feb 20 17:42:12 2008 +0000 --- tools/python/xen/lowlevel/xc/xc.c | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletion(-) diff -r c374d4d0945c -r 4dc6caabd5fa tools/python/xen/lowlevel/xc/xc.c --- a/tools/python/xen/lowlevel/xc/xc.c Wed Feb 20 17:50:27 2008 +0000 +++ b/tools/python/xen/lowlevel/xc/xc.c Thu Feb 21 15:15:02 2008 +0000 @@ -226,7 +226,16 @@ static PyObject *pyxc_vcpu_setaffinity(X { cpumap = 0ULL; for ( i = 0; i < PyList_Size(cpulist); i++ ) - cpumap |= (uint64_t)1 << PyInt_AsLong(PyList_GetItem(cpulist, i)); + { + long cpu = PyInt_AsLong(PyList_GetItem(cpulist, i)); + if ( cpu >= 64 ) + { + errno = EINVAL; + PyErr_SetFromErrno(xc_error_obj); + return NULL; + } + cpumap |= (uint64_t)1 << cpu; + } } if ( xc_vcpu_setaffinity(self->xc_handle, dom, vcpu, cpumap) != 0 ) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |