From b5f5245491b4bea1fd75dfd535e0ea7ec2071b3c Mon Sep 17 00:00:00 2001 From: Markus Elfring Date: Tue, 15 Aug 2017 16:14:19 +0200 Subject: fs-udf: Delete an error message for a failed memory allocation in two functions Omit an extra message for a memory allocation failure in these functions. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring Signed-off-by: Jan Kara --- fs/udf/super.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'fs/udf/super.c') diff --git a/fs/udf/super.c b/fs/udf/super.c index d772c9c676d0..93c59630512b 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -268,8 +268,6 @@ static int udf_sb_alloc_partition_maps(struct super_block *sb, u32 count) sbi->s_partmaps = kcalloc(count, sizeof(*sbi->s_partmaps), GFP_KERNEL); if (!sbi->s_partmaps) { - udf_err(sb, "Unable to allocate space for %d partition maps\n", - count); sbi->s_partitions = 0; return -ENOMEM; } -- cgit v1.2.3