Re: [PATCH] Fix WARN_ON / WARN_ON_ONCE regression

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Herbert Xu wrote:
The original reason for the return value is so you can do

if (WARN_ON(impossible_condition)) {
	attempt_to_continue;
}

instead of
if (unlikely(impossible_condition)) {
	WARN_ON(1);
	attempt_to_continue;
}

(Hm, WARN_ON(1) is pretty ugly; we should probably have a WARN() as well.)

Why is the second one any better than the first? It's a line less code, but that doesn't seem like a big deal. It's not like passing the actual condition into WARN_ON is useful, because it doesn't try to print it out. And "if (WARN_ON_ONCE(cond)) ..." is arguably more useful (since it encapsulates the printing once logic), but also very unclear (does it evaluate true once or every time?).

There are certainly lots of places in the kernel which could use if(WARN_ON(...)), but I haven't found any places which actually do. I just don't see what benefit you would gain in converting things to using if(WARN_ON(...)) anyway.

Oh and yes the unlikely does make a difference in a statement
expression.

I was thinking something like

	unlikely(({
		...
	}))

is a bit more obvious in terms of imagining how it would get expanded and evaluated.

   J
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux