diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-08-16 16:16:30 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2017-08-21 16:02:59 +0200 |
commit | 434aafb572d24bfef8aade15b59e195f58d9bc34 (patch) | |
tree | f0a3f76fa0b9ac8ef2058d641c5e38bfc8780466 /fs/quota | |
parent | b5f5245491b4bea1fd75dfd535e0ea7ec2071b3c (diff) | |
download | linux-stable-434aafb572d24bfef8aade15b59e195f58d9bc34.tar.gz linux-stable-434aafb572d24bfef8aade15b59e195f58d9bc34.tar.bz2 linux-stable-434aafb572d24bfef8aade15b59e195f58d9bc34.zip |
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 <elfring@users.sourceforge.net>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/quota')
-rw-r--r-- | fs/quota/quota_v2.c | 6 |
1 files changed, 2 insertions, 4 deletions
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 */ |