From: Ulrich Drepper Date: Tue, 16 Jun 2009 04:12:57 +0000 (-0700) Subject: When iterating over CPU bitmask, don't try more than CPU_SETSIZE. X-Git-Tag: glibc-2.11~311 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=395a37e379bf900b2b6a25e17c44cde2d1c46c44;p=platform%2Fupstream%2Fglibc.git When iterating over CPU bitmask, don't try more than CPU_SETSIZE. --- diff --git a/ChangeLog b/ChangeLog index b4f7524..a431f39 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2009-06-15 Ulrich Drepper + [BZ #10183] + * posix/tst-cpucount.c: Don't try more than CPU_SETSIZE bits. + [BZ #10195] * inet/netinet/icmp6.h (struct nd_opt_home_agent_info): Change type of nd_opt_home_agent_info_preference to uint16_t. diff --git a/posix/tst-cpucount.c b/posix/tst-cpucount.c index fe3cded..b3691a1 100644 --- a/posix/tst-cpucount.c +++ b/posix/tst-cpucount.c @@ -1,5 +1,6 @@ #include #include +#include static int do_test (void) @@ -8,7 +9,7 @@ do_test (void) CPU_ZERO (&c); - for (int cnt = 0; cnt < 130; ++cnt) + for (int cnt = 0; cnt < MIN (CPU_SETSIZE, 130); ++cnt) { int n = CPU_COUNT (&c); if (n != cnt)