public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] befs: redundant test on unsigned in befs_get_block()?
@ 2009-10-16 15:14 Roel Kluin
  2009-10-16 21:25 ` Andrew Morton
  0 siblings, 1 reply; 3+ messages in thread
From: Roel Kluin @ 2009-10-16 15:14 UTC (permalink / raw)
  To: Sergey S. Kostyliov, Andrew Morton, LKML

block is unsigned, this test appears redundant.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
Or is a different test required?

diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
index 33baf27..3ab1336 100644
--- a/fs/befs/linuxvfs.c
+++ b/fs/befs/linuxvfs.c
@@ -128,13 +128,6 @@ befs_get_block(struct inode *inode, sector_t block,
 	befs_debug(sb, "---> befs_get_block() for inode %lu, block %ld",
 		   inode->i_ino, block);
 
-	if (block < 0) {
-		befs_error(sb, "befs_get_block() was asked for a block "
-			   "number less than zero: block %ld in inode %lu",
-			   block, inode->i_ino);
-		return -EIO;
-	}
-
 	if (create) {
 		befs_error(sb, "befs_get_block() was asked to write to "
 			   "block %ld in inode %lu", block, inode->i_ino);

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-10-20 21:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-16 15:14 [PATCH] befs: redundant test on unsigned in befs_get_block()? Roel Kluin
2009-10-16 21:25 ` Andrew Morton
2009-10-20 21:17   ` Roel Kluin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox