Remove redundant check from autofs4_put_super

From: Dave Jones
Date: Wed Mar 08 2006 - 22:03:24 EST


We have to have a valid sbi here, or we'd have oopsed already.
(There's a dereference of sbi->catatonic a few lines above)

Coverity #740
Signed-off-by: Dave Jones <davej@xxxxxxxxxx>

--- linux-2.6/fs/autofs4/inode.c~ 2006-03-08 22:02:53.000000000 -0500
+++ linux-2.6/fs/autofs4/inode.c 2006-03-08 22:03:47.000000000 -0500
@@ -145,8 +145,7 @@ static void autofs4_put_super(struct sup
autofs4_catatonic_mode(sbi); /* Free wait queues, close pipe */

/* Clean up and release dangling references */
- if (sbi)
- autofs4_force_release(sbi);
+ autofs4_force_release(sbi);

kfree(sbi);


--
http://www.codemonkey.org.uk
-
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/