Re: More cleanups for swsusp

From: Rusty Russell
Date: Wed Jan 21 2004 - 00:21:19 EST


In message <20040120225219.GA19190@xxxxxxxxxx> you write:
> - if (fill_suspend_header(&cur->sh))
> - panic("\nOut of memory while writing header");
> + BUG_ON (fill_suspend_header(&cur->sh));

1) fill_suspend_header never fails, perhaps make it return void.

2) If fill_suspend_header could fail, you should indicate why it won't
fail here, and

3) BUG_ON(complex condition expression) is much less clear than:

if (complex condition expression)
BUG();

Cheers,
Rusty.
--
Anyone who quotes me in their sig is an idiot. -- Rusty Russell.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/