mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 04:00:52 +07:00
fs: fs_struct rwlock to spinlock
fs: fs_struct rwlock to spinlock struct fs_struct.lock is an rwlock with the read-side used to protect root and pwd members while taking references to them. Taking a reference to a path typically requires just 2 atomic ops, so the critical section is very small. Parallel read-side operations would have cacheline contention on the lock, the dentry, and the vfsmount cachelines, so the rwlock is unlikely to ever give a real parallelism increase. Replace it with a spinlock to avoid one or two atomic operations in typical path lookup fastpath. Signed-off-by: Nick Piggin <npiggin@kernel.dk> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
44672e4fbd
commit
2a4419b5b2
@ -44,9 +44,9 @@ int pohmelfs_construct_path_string(struct pohmelfs_inode *pi, void *data, int le
|
|||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
read_lock(¤t->fs->lock);
|
spin_lock(¤t->fs->lock);
|
||||||
path.mnt = mntget(current->fs->root.mnt);
|
path.mnt = mntget(current->fs->root.mnt);
|
||||||
read_unlock(¤t->fs->lock);
|
spin_unlock(¤t->fs->lock);
|
||||||
|
|
||||||
path.dentry = d;
|
path.dentry = d;
|
||||||
|
|
||||||
@ -91,9 +91,9 @@ int pohmelfs_path_length(struct pohmelfs_inode *pi)
|
|||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
read_lock(¤t->fs->lock);
|
spin_lock(¤t->fs->lock);
|
||||||
root = dget(current->fs->root.dentry);
|
root = dget(current->fs->root.dentry);
|
||||||
read_unlock(¤t->fs->lock);
|
spin_unlock(¤t->fs->lock);
|
||||||
|
|
||||||
spin_lock(&dcache_lock);
|
spin_lock(&dcache_lock);
|
||||||
|
|
||||||
|
@ -1117,7 +1117,7 @@ int check_unsafe_exec(struct linux_binprm *bprm)
|
|||||||
bprm->unsafe = tracehook_unsafe_exec(p);
|
bprm->unsafe = tracehook_unsafe_exec(p);
|
||||||
|
|
||||||
n_fs = 1;
|
n_fs = 1;
|
||||||
write_lock(&p->fs->lock);
|
spin_lock(&p->fs->lock);
|
||||||
rcu_read_lock();
|
rcu_read_lock();
|
||||||
for (t = next_thread(p); t != p; t = next_thread(t)) {
|
for (t = next_thread(p); t != p; t = next_thread(t)) {
|
||||||
if (t->fs == p->fs)
|
if (t->fs == p->fs)
|
||||||
@ -1134,7 +1134,7 @@ int check_unsafe_exec(struct linux_binprm *bprm)
|
|||||||
res = 1;
|
res = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
write_unlock(&p->fs->lock);
|
spin_unlock(&p->fs->lock);
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
@ -13,11 +13,11 @@ void set_fs_root(struct fs_struct *fs, struct path *path)
|
|||||||
{
|
{
|
||||||
struct path old_root;
|
struct path old_root;
|
||||||
|
|
||||||
write_lock(&fs->lock);
|
spin_lock(&fs->lock);
|
||||||
old_root = fs->root;
|
old_root = fs->root;
|
||||||
fs->root = *path;
|
fs->root = *path;
|
||||||
path_get(path);
|
path_get(path);
|
||||||
write_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
if (old_root.dentry)
|
if (old_root.dentry)
|
||||||
path_put(&old_root);
|
path_put(&old_root);
|
||||||
}
|
}
|
||||||
@ -30,11 +30,11 @@ void set_fs_pwd(struct fs_struct *fs, struct path *path)
|
|||||||
{
|
{
|
||||||
struct path old_pwd;
|
struct path old_pwd;
|
||||||
|
|
||||||
write_lock(&fs->lock);
|
spin_lock(&fs->lock);
|
||||||
old_pwd = fs->pwd;
|
old_pwd = fs->pwd;
|
||||||
fs->pwd = *path;
|
fs->pwd = *path;
|
||||||
path_get(path);
|
path_get(path);
|
||||||
write_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
|
|
||||||
if (old_pwd.dentry)
|
if (old_pwd.dentry)
|
||||||
path_put(&old_pwd);
|
path_put(&old_pwd);
|
||||||
@ -51,7 +51,7 @@ void chroot_fs_refs(struct path *old_root, struct path *new_root)
|
|||||||
task_lock(p);
|
task_lock(p);
|
||||||
fs = p->fs;
|
fs = p->fs;
|
||||||
if (fs) {
|
if (fs) {
|
||||||
write_lock(&fs->lock);
|
spin_lock(&fs->lock);
|
||||||
if (fs->root.dentry == old_root->dentry
|
if (fs->root.dentry == old_root->dentry
|
||||||
&& fs->root.mnt == old_root->mnt) {
|
&& fs->root.mnt == old_root->mnt) {
|
||||||
path_get(new_root);
|
path_get(new_root);
|
||||||
@ -64,7 +64,7 @@ void chroot_fs_refs(struct path *old_root, struct path *new_root)
|
|||||||
fs->pwd = *new_root;
|
fs->pwd = *new_root;
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
write_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
}
|
}
|
||||||
task_unlock(p);
|
task_unlock(p);
|
||||||
} while_each_thread(g, p);
|
} while_each_thread(g, p);
|
||||||
@ -87,10 +87,10 @@ void exit_fs(struct task_struct *tsk)
|
|||||||
if (fs) {
|
if (fs) {
|
||||||
int kill;
|
int kill;
|
||||||
task_lock(tsk);
|
task_lock(tsk);
|
||||||
write_lock(&fs->lock);
|
spin_lock(&fs->lock);
|
||||||
tsk->fs = NULL;
|
tsk->fs = NULL;
|
||||||
kill = !--fs->users;
|
kill = !--fs->users;
|
||||||
write_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
task_unlock(tsk);
|
task_unlock(tsk);
|
||||||
if (kill)
|
if (kill)
|
||||||
free_fs_struct(fs);
|
free_fs_struct(fs);
|
||||||
@ -104,7 +104,7 @@ struct fs_struct *copy_fs_struct(struct fs_struct *old)
|
|||||||
if (fs) {
|
if (fs) {
|
||||||
fs->users = 1;
|
fs->users = 1;
|
||||||
fs->in_exec = 0;
|
fs->in_exec = 0;
|
||||||
rwlock_init(&fs->lock);
|
spin_lock_init(&fs->lock);
|
||||||
fs->umask = old->umask;
|
fs->umask = old->umask;
|
||||||
get_fs_root_and_pwd(old, &fs->root, &fs->pwd);
|
get_fs_root_and_pwd(old, &fs->root, &fs->pwd);
|
||||||
}
|
}
|
||||||
@ -121,10 +121,10 @@ int unshare_fs_struct(void)
|
|||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
task_lock(current);
|
task_lock(current);
|
||||||
write_lock(&fs->lock);
|
spin_lock(&fs->lock);
|
||||||
kill = !--fs->users;
|
kill = !--fs->users;
|
||||||
current->fs = new_fs;
|
current->fs = new_fs;
|
||||||
write_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
task_unlock(current);
|
task_unlock(current);
|
||||||
|
|
||||||
if (kill)
|
if (kill)
|
||||||
@ -143,7 +143,7 @@ EXPORT_SYMBOL(current_umask);
|
|||||||
/* to be mentioned only in INIT_TASK */
|
/* to be mentioned only in INIT_TASK */
|
||||||
struct fs_struct init_fs = {
|
struct fs_struct init_fs = {
|
||||||
.users = 1,
|
.users = 1,
|
||||||
.lock = __RW_LOCK_UNLOCKED(init_fs.lock),
|
.lock = __SPIN_LOCK_UNLOCKED(init_fs.lock),
|
||||||
.umask = 0022,
|
.umask = 0022,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -156,14 +156,14 @@ void daemonize_fs_struct(void)
|
|||||||
|
|
||||||
task_lock(current);
|
task_lock(current);
|
||||||
|
|
||||||
write_lock(&init_fs.lock);
|
spin_lock(&init_fs.lock);
|
||||||
init_fs.users++;
|
init_fs.users++;
|
||||||
write_unlock(&init_fs.lock);
|
spin_unlock(&init_fs.lock);
|
||||||
|
|
||||||
write_lock(&fs->lock);
|
spin_lock(&fs->lock);
|
||||||
current->fs = &init_fs;
|
current->fs = &init_fs;
|
||||||
kill = !--fs->users;
|
kill = !--fs->users;
|
||||||
write_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
|
|
||||||
task_unlock(current);
|
task_unlock(current);
|
||||||
if (kill)
|
if (kill)
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
struct fs_struct {
|
struct fs_struct {
|
||||||
int users;
|
int users;
|
||||||
rwlock_t lock;
|
spinlock_t lock;
|
||||||
int umask;
|
int umask;
|
||||||
int in_exec;
|
int in_exec;
|
||||||
struct path root, pwd;
|
struct path root, pwd;
|
||||||
@ -23,29 +23,29 @@ extern int unshare_fs_struct(void);
|
|||||||
|
|
||||||
static inline void get_fs_root(struct fs_struct *fs, struct path *root)
|
static inline void get_fs_root(struct fs_struct *fs, struct path *root)
|
||||||
{
|
{
|
||||||
read_lock(&fs->lock);
|
spin_lock(&fs->lock);
|
||||||
*root = fs->root;
|
*root = fs->root;
|
||||||
path_get(root);
|
path_get(root);
|
||||||
read_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void get_fs_pwd(struct fs_struct *fs, struct path *pwd)
|
static inline void get_fs_pwd(struct fs_struct *fs, struct path *pwd)
|
||||||
{
|
{
|
||||||
read_lock(&fs->lock);
|
spin_lock(&fs->lock);
|
||||||
*pwd = fs->pwd;
|
*pwd = fs->pwd;
|
||||||
path_get(pwd);
|
path_get(pwd);
|
||||||
read_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void get_fs_root_and_pwd(struct fs_struct *fs, struct path *root,
|
static inline void get_fs_root_and_pwd(struct fs_struct *fs, struct path *root,
|
||||||
struct path *pwd)
|
struct path *pwd)
|
||||||
{
|
{
|
||||||
read_lock(&fs->lock);
|
spin_lock(&fs->lock);
|
||||||
*root = fs->root;
|
*root = fs->root;
|
||||||
path_get(root);
|
path_get(root);
|
||||||
*pwd = fs->pwd;
|
*pwd = fs->pwd;
|
||||||
path_get(pwd);
|
path_get(pwd);
|
||||||
read_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* _LINUX_FS_STRUCT_H */
|
#endif /* _LINUX_FS_STRUCT_H */
|
||||||
|
@ -752,13 +752,13 @@ static int copy_fs(unsigned long clone_flags, struct task_struct *tsk)
|
|||||||
struct fs_struct *fs = current->fs;
|
struct fs_struct *fs = current->fs;
|
||||||
if (clone_flags & CLONE_FS) {
|
if (clone_flags & CLONE_FS) {
|
||||||
/* tsk->fs is already what we want */
|
/* tsk->fs is already what we want */
|
||||||
write_lock(&fs->lock);
|
spin_lock(&fs->lock);
|
||||||
if (fs->in_exec) {
|
if (fs->in_exec) {
|
||||||
write_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
return -EAGAIN;
|
return -EAGAIN;
|
||||||
}
|
}
|
||||||
fs->users++;
|
fs->users++;
|
||||||
write_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
tsk->fs = copy_fs_struct(fs);
|
tsk->fs = copy_fs_struct(fs);
|
||||||
@ -1676,13 +1676,13 @@ SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags)
|
|||||||
|
|
||||||
if (new_fs) {
|
if (new_fs) {
|
||||||
fs = current->fs;
|
fs = current->fs;
|
||||||
write_lock(&fs->lock);
|
spin_lock(&fs->lock);
|
||||||
current->fs = new_fs;
|
current->fs = new_fs;
|
||||||
if (--fs->users)
|
if (--fs->users)
|
||||||
new_fs = NULL;
|
new_fs = NULL;
|
||||||
else
|
else
|
||||||
new_fs = fs;
|
new_fs = fs;
|
||||||
write_unlock(&fs->lock);
|
spin_unlock(&fs->lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (new_mm) {
|
if (new_mm) {
|
||||||
|
Loading…
Reference in New Issue
Block a user