mirror of https://gitee.com/openkylin/linux.git
proc: remove useless check on symlink removal
proc symlinks always have valid ->data containing destination of symlink. No need to check it on removal -- proc_symlink() already done it. Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
76df0c25d0
commit
fd2cbe4888
|
@ -673,7 +673,7 @@ void free_proc_entry(struct proc_dir_entry *de)
|
|||
|
||||
release_inode_number(ino);
|
||||
|
||||
if (S_ISLNK(de->mode) && de->data)
|
||||
if (S_ISLNK(de->mode))
|
||||
kfree(de->data);
|
||||
kfree(de);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue