From: Markus Elfring Date: Wed, 16 Aug 2017 14:16:30 +0000 (+0200) Subject: quota_v2: Delete an error message for a failed memory allocation in v2_read_file_info() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=434aafb572d24bfef8aade15b59e195f58d9bc34;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git quota_v2: Delete an error message for a failed memory allocation in v2_read_file_info() Omit an extra message for a memory allocation failure in this function. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring Signed-off-by: Jan Kara --- diff --git a/fs/quota/quota_v2.c b/fs/quota/quota_v2.c index ca71bf881ad1..2259329616b7 100644 --- a/fs/quota/quota_v2.c +++ b/fs/quota/quota_v2.c @@ -109,11 +109,9 @@ static int v2_read_file_info(struct super_block *sb, int type) return -1; } info->dqi_priv = kmalloc(sizeof(struct qtree_mem_dqinfo), GFP_NOFS); - if (!info->dqi_priv) { - printk(KERN_WARNING - "Not enough memory for quota information structure.\n"); + if (!info->dqi_priv) return -ENOMEM; - } + qinfo = info->dqi_priv; if (version == 0) { /* limits are stored as unsigned 32-bit data */