[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] x86/oprof: adjust off-by-one counter range checks
# HG changeset patch # User Jan Beulich <jbeulich@xxxxxxxx> # Date 1350465790 -7200 # Node ID 4b4c0c7a6031820ab521fdd6764cb0df157f44bf # Parent 4fc87c2f31a02c770655518c9e4d389302564f00 x86/oprof: adjust off-by-one counter range checks Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Keir Fraser <keir@xxxxxxx> --- diff -r 4fc87c2f31a0 -r 4b4c0c7a6031 xen/arch/x86/oprofile/xenoprof.c --- a/xen/arch/x86/oprofile/xenoprof.c Tue Oct 16 17:26:36 2012 +0200 +++ b/xen/arch/x86/oprofile/xenoprof.c Wed Oct 17 11:23:10 2012 +0200 @@ -24,7 +24,7 @@ int xenoprof_arch_counter(XEN_GUEST_HAND if ( copy_from_guest(&counter, arg, 1) ) return -EFAULT; - if ( counter.ind > OP_MAX_COUNTER ) + if ( counter.ind >= OP_MAX_COUNTER ) return -E2BIG; counter_config[counter.ind].count = counter.count; @@ -61,7 +61,7 @@ int compat_oprof_arch_counter(XEN_GUEST_ if ( copy_from_guest(&counter, arg, 1) ) return -EFAULT; - if ( counter.ind > OP_MAX_COUNTER ) + if ( counter.ind >= OP_MAX_COUNTER ) return -E2BIG; counter_config[counter.ind].count = counter.count; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |