[Cbe-oss-dev] [patch 12/13] cell: saving spus information for kexec crash

Andrew Morton akpm at linux-foundation.org
Thu Jul 19 06:03:01 EST 2007


On Wed, 18 Jul 2007 18:04:51 +0200
Arnd Bergmann <arnd at arndb.de> wrote:

> +		if (spu->number >= CRASH_NUM_SPUS) {
> +			WARN_ON(1);
> +			continue;
> +		}

Could be

	if (WARN_ON(spu->number >= CRASH_NUM_SPUS))
		continue;




More information about the cbe-oss-dev mailing list