From: yan Date: Fri, 5 Oct 2012 00:15:38 +0000 (-0700) Subject: proc: return -ENOMEM when inode allocation failed X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=620727506dc6da0562fa4f6950dedb8a51bd8237;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git proc: return -ENOMEM when inode allocation failed If proc_get_inode() returns NULL then presumably it encountered memory exhaustion. proc_lookup_de() should return -ENOMEM in this case, not -EINVAL. Signed-off-by: yan Cc: Ryan Mallon Cc: Cong Wang Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/proc/generic.c b/fs/proc/generic.c index b3647fe6a608..9e8f63164309 100644 --- a/fs/proc/generic.c +++ b/fs/proc/generic.c @@ -427,7 +427,7 @@ struct dentry *proc_lookup_de(struct proc_dir_entry *de, struct inode *dir, if (!memcmp(dentry->d_name.name, de->name, de->namelen)) { pde_get(de); spin_unlock(&proc_subdir_lock); - error = -EINVAL; + error = -ENOMEM; inode = proc_get_inode(dir->i_sb, de); goto out_unlock; }