* [PATCH 1/2] vfsmount_lock / mnt_parent
@ 2004-01-26 23:07 Mike Waychison
0 siblings, 0 replies; only message in thread
From: Mike Waychison @ 2004-01-26 23:07 UTC (permalink / raw)
To: Kernel Mailing List; +Cc: viro
[-- Attachment #1: Type: text/plain, Size: 466 bytes --]
This patch makes __d_name grab vfsmount_lock when walking up the mount-tree.
--
Mike Waychison
Sun Microsystems, Inc.
1 (650) 352-5299 voice
1 (416) 202-8336 voice
mailto: Michael.Waychison@Sun.COM
http://www.sun.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
NOTICE: The opinions expressed in this email are held by me,
and may not represent the views of Sun Microsystems, Inc.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[-- Attachment #2: d_name_vfsmount_lock.patch --]
[-- Type: text/x-patch, Size: 1139 bytes --]
# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1520 -> 1.1521
# fs/dcache.c 1.64 -> 1.65
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 04/01/26 michael.waychison@sun.com 1.1521
# dcache.c:
# - protect vfsmount->mnt_parent by nesting vfsmount_lock in __d_path
# --------------------------------------------
#
diff -Nru a/fs/dcache.c b/fs/dcache.c
--- a/fs/dcache.c Mon Jan 26 21:39:56 2004
+++ b/fs/dcache.c Mon Jan 26 21:39:56 2004
@@ -1296,10 +1296,14 @@
break;
if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
/* Global root? */
- if (vfsmnt->mnt_parent == vfsmnt)
+ spin_lock(&vfsmount_lock);
+ if (vfsmnt->mnt_parent == vfsmnt) {
+ spin_unlock(&vfsmount_lock);
goto global_root;
+ }
dentry = vfsmnt->mnt_mountpoint;
vfsmnt = vfsmnt->mnt_parent;
+ spin_unlock(&vfsmount_lock);
continue;
}
parent = dentry->d_parent;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-01-26 23:09 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-01-26 23:07 [PATCH 1/2] vfsmount_lock / mnt_parent Mike Waychison
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox