Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
When iterating over CPU bitmask, don't try more than CPU_SETSIZE.
  • Loading branch information
Ulrich Drepper committed Jun 16, 2009
1 parent 7ed520b commit 395a37e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog
@@ -1,5 +1,8 @@
2009-06-15 Ulrich Drepper <drepper@redhat.com>

[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.
Expand Down
3 changes: 2 additions & 1 deletion posix/tst-cpucount.c
@@ -1,5 +1,6 @@
#include <sched.h>
#include <stdio.h>
#include <sys/param.h>

static int
do_test (void)
Expand All @@ -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)
Expand Down

0 comments on commit 395a37e

Please sign in to comment.