Re: [PATCH] Remove pointless <0 comparison for unsigned variable in fs/fcntl.c

From: Matthew Wilcox
Date: Sun Nov 21 2004 - 20:06:42 EST


On Sun, Nov 21, 2004 at 11:55:23PM +0100, Jesper Juhl wrote:
> This patch removes a pointless comparison. "arg" is an unsigned long, thus
> it can never be <0, so testing that is pointless.
>
> Signed-off-by: Jesper Juhl <juhl-lkml@xxxxxx>
>
> case F_SETSIG:
> /* arg == 0 restores default behaviour. */
> - if (arg < 0 || arg > _NSIG) {
> + if (arg > _NSIG) {
> break;

I've seen patches like this before. I'm generally in favour of removing
the unnecessary test, but Linus rejected it on the grounds the compiler
shouldn't be warning about it and it's better to be more explicit about
the range test. Maybe he's changed his mind between then and now ;-)

--
"Next the statesmen will invent cheap lies, putting the blame upon
the nation that is attacked, and every man will be glad of those
conscience-soothing falsities, and will diligently study them, and refuse
to examine any refutations of them; and thus he will by and by convince
himself that the war is just, and will thank God for the better sleep
he enjoys after this process of grotesque self-deception." -- Mark Twain
-
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/