projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c3ee42
)
[PATCH] umount_tree() will unhash everything itself
author
Al Viro
<viro@zeniv.linux.org.uk>
Mon, 24 Mar 2008 04:16:03 +0000
(
00:16
-0400)
committer
Al Viro
<viro@zeniv.linux.org.uk>
Tue, 22 Apr 2008 03:13:54 +0000
(23:13 -0400)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/pnode.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/pnode.c
b/fs/pnode.c
index a9e0d6fadbcd96c14e40c52634bd11f19a9c6a08..f968e35d9785fde2d333dfff431d693b7a4bb50d 100644
(file)
--- a/
fs/pnode.c
+++ b/
fs/pnode.c
@@
-212,8
+212,7
@@
int propagate_mnt(struct vfsmount *dest_mnt, struct dentry *dest_dentry,
out:
spin_lock(&vfsmount_lock);
while (!list_empty(&tmp_list)) {
- child = list_entry(tmp_list.next, struct vfsmount, mnt_hash);
- list_del_init(&child->mnt_hash);
+ child = list_first_entry(&tmp_list, struct vfsmount, mnt_hash);
umount_tree(child, 0, &umount_list);
}
spin_unlock(&vfsmount_lock);