[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] trace: improve check_tbuf_size()
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1278093190 -3600 # Node ID 1390e2ab45c7b63d79ba9496d609cf59af4b44ee # Parent 2f3a68a0b55b1b7df4d6632dfc151040ba08e9ea trace: improve check_tbuf_size() It didn't consider the case of the incoming size not allowing for the 2*data_size range for t_buf->{prod,cons} Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx> Signed-off-by: George Dunlap <george.dunlap@xxxxxxxxxxxxx> --- xen/common/trace.c | 18 +++++++++++++----- 1 files changed, 13 insertions(+), 5 deletions(-) diff -r 2f3a68a0b55b -r 1390e2ab45c7 xen/common/trace.c --- a/xen/common/trace.c Fri Jul 02 18:52:45 2010 +0100 +++ b/xen/common/trace.c Fri Jul 02 18:53:10 2010 +0100 @@ -92,11 +92,19 @@ static void calc_tinfo_first_offset(void /** * check_tbuf_size - check to make sure that the proposed size will fit - * in the currently sized struct t_info. - */ -static inline int check_tbuf_size(int size) -{ - return (num_online_cpus() * size + t_info_first_offset) > (T_INFO_SIZE / sizeof(uint32_t)); + * in the currently sized struct t_info and allows prod and cons to + * reach double the value without overflow. + */ +static int check_tbuf_size(u32 pages) +{ + struct t_buf dummy; + typeof(dummy.prod) size; + + size = ((typeof(dummy.prod))pages) * PAGE_SIZE; + + return (size / PAGE_SIZE != pages) + || (size + size < size) + || (num_online_cpus() * pages + t_info_first_offset > T_INFO_SIZE / sizeof(uint32_t)); } /** _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |