Hi, msgctl10() un-necessarily eats up all the PIDs of the system leading to system becoming un-responsive. The changed no.s would better do the job. Signed-off-by: Subrata Modak Acked-by: Caspar Zhang --- --- a/testcases/kernel/syscalls/ipc/msgctl/msgctl10.c 2010-04-15 18:55:19.857267414 +0800 +++ b/testcases/kernel/syscalls/ipc/msgctl/msgctl10.c 2010-04-15 18:56:53.943358977 +0800 @@ -65,12 +65,8 @@ int exp_enos[] = { 0 }; /* List must end with 0 */ -#ifndef CONFIG_COLDFIRE -#define MAXNPROCS 1000000 /* This value is set to an arbitrary high limit. */ -#else -#define MAXNPROCS 100000 /* Coldfire can't deal with 1000000 */ -#endif -#define MAXNREPS 100000 +#define MAXNPROCS 10000 /* These should be sufficient */ +#define MAXNREPS 10000 /* Else they screw up the system un-necessarily */ #define FAIL 1 #define PASS 0