Browse Source

xfs: remove redundant user buffer count checks at xfs_bulkstat

From: Jie Liu <jeff.liu@oracle.com>

Remove the redundant user buffer and count checks as it has already
been validated at xfs_ioc_bulkstat().

Signed-off-by: Jie Liu <jeff.liu@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Jie Liu 11 years ago
parent
commit
296dfd7fdb
1 changed files with 1 additions and 3 deletions
  1. 1 3
      fs/xfs/xfs_itable.c

+ 1 - 3
fs/xfs/xfs_itable.c

@@ -230,9 +230,7 @@ xfs_bulkstat(
 		*ubcountp = 0;
 		return 0;
 	}
-	if (!ubcountp || *ubcountp <= 0) {
-		return -EINVAL;
-	}
+
 	ubcount = *ubcountp; /* statstruct's */
 	ubleft = ubcount * statstruct_size; /* bytes */
 	*ubcountp = ubelem = 0;