From: Miklos Szeredi <miklos@szeredi.hu>
To: akpm@linux-foundation.org
Cc: hch@infradead.org, viro@ZenIV.linux.org.uk, ezk@cs.sunysb.edu,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
Jeff Mahoney <jeffm@suse.de>
Subject: [patch 03/22] reiserfs: dont call vfs_rmdir
Date: Fri, 16 May 2008 18:31:39 +0200 [thread overview]
Message-ID: <20080516163216.566100748@szeredi.hu> (raw)
In-Reply-To: <20080516163136.560107038@szeredi.hu>
[-- Attachment #1: reiserfs_rmdir_cleanup.patch --]
[-- Type: text/plain, Size: 3375 bytes --]
From: Miklos Szeredi <mszeredi@suse.cz>
reiserfs_delete_xattrs() calls vfs_rmdir() to remove the private
directory associated with the extended attributes for an inode.
Replace with explicit call to reiserfs_rmdir().
The extended attribute files reside in a private directory, completely
inaccessible from userspace. This means, that checking against mounts
on the dentry is not necessary.
The calls to may_delete() and security_inode_rmdir(), as performed by
vfs_rmdir() are also unecessary for this case.
Based on patch by Jeff Mahoney.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Acked-by: Jeff Mahoney <jeffm@suse.de>
---
fs/reiserfs/namei.c | 2 +-
fs/reiserfs/xattr.c | 22 +++++++++++++++++++++-
include/linux/reiserfs_fs.h | 1 +
3 files changed, 23 insertions(+), 2 deletions(-)
Index: linux-2.6/fs/reiserfs/xattr.c
===================================================================
--- linux-2.6.orig/fs/reiserfs/xattr.c 2008-05-16 17:50:35.000000000 +0200
+++ linux-2.6/fs/reiserfs/xattr.c 2008-05-16 17:50:43.000000000 +0200
@@ -35,6 +35,7 @@
#include <linux/namei.h>
#include <linux/errno.h>
#include <linux/fs.h>
+#include <linux/quotaops.h>
#include <linux/file.h>
#include <linux/pagemap.h>
#include <linux/xattr.h>
@@ -712,6 +713,25 @@ reiserfs_delete_xattrs_filler(void *buf,
}
+static int xattr_rmdir(struct inode *dir, struct dentry *dentry)
+{
+ int error;
+
+ DQUOT_INIT(dir);
+
+ mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
+ dentry_unhash(dentry);
+ error = reiserfs_rmdir(dir, dentry);
+ if (!error)
+ dentry->d_inode->i_flags |= S_DEAD;
+ mutex_unlock(&dentry->d_inode->i_mutex);
+ if (!error)
+ d_delete(dentry);
+ dput(dentry);
+
+ return error;
+}
+
/* This is called w/ inode->i_mutex downed */
int reiserfs_delete_xattrs(struct inode *inode)
{
@@ -746,7 +766,7 @@ int reiserfs_delete_xattrs(struct inode
if (dir->d_inode->i_nlink <= 2) {
root = get_xa_root(inode->i_sb, XATTR_REPLACE);
reiserfs_write_lock_xattrs(inode->i_sb);
- err = vfs_rmdir(root->d_inode, dir);
+ err = xattr_rmdir(root->d_inode, dir);
reiserfs_write_unlock_xattrs(inode->i_sb);
dput(root);
} else {
Index: linux-2.6/fs/reiserfs/namei.c
===================================================================
--- linux-2.6.orig/fs/reiserfs/namei.c 2008-05-16 17:50:35.000000000 +0200
+++ linux-2.6/fs/reiserfs/namei.c 2008-05-16 17:50:43.000000000 +0200
@@ -850,7 +850,7 @@ static inline int reiserfs_empty_dir(str
return 1;
}
-static int reiserfs_rmdir(struct inode *dir, struct dentry *dentry)
+int reiserfs_rmdir(struct inode *dir, struct dentry *dentry)
{
int retval, err;
struct inode *inode;
Index: linux-2.6/include/linux/reiserfs_fs.h
===================================================================
--- linux-2.6.orig/include/linux/reiserfs_fs.h 2008-05-16 17:50:35.000000000 +0200
+++ linux-2.6/include/linux/reiserfs_fs.h 2008-05-16 17:50:43.000000000 +0200
@@ -1911,6 +1911,7 @@ static inline void reiserfs_update_sd(st
void sd_attrs_to_i_attrs(__u16 sd_attrs, struct inode *inode);
void i_attrs_to_sd_attrs(struct inode *inode, __u16 * sd_attrs);
int reiserfs_setattr(struct dentry *dentry, struct iattr *attr);
+int reiserfs_rmdir(struct inode *dir, struct dentry *dentry);
/* namei.c */
void set_de_name_and_namelen(struct reiserfs_dir_entry *de);
--
next prev parent reply other threads:[~2008-05-16 16:34 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-16 16:31 [patch 00/22] vfs: fixes and cleanups (v3) Miklos Szeredi
2008-05-16 16:31 ` [patch 01/22] nfsd: clean up mnt_want_write calls Miklos Szeredi
2008-05-16 16:31 ` [patch 02/22] cgroup: dont call vfs_mkdir Miklos Szeredi
2008-05-16 16:31 ` Miklos Szeredi [this message]
2008-05-16 16:31 ` [patch 04/22] reiserfs: dont call notify_change Miklos Szeredi
2008-05-16 16:31 ` [patch 05/22] sysfs: " Miklos Szeredi
2008-05-16 16:31 ` [patch 06/22] hpfs: " Miklos Szeredi
2008-05-16 16:31 ` [patch 07/22] fat: " Miklos Szeredi
2008-05-16 23:25 ` OGAWA Hirofumi
2008-05-17 6:56 ` Miklos Szeredi
2008-05-17 13:01 ` Brad Boyer
2008-05-19 7:47 ` Miklos Szeredi
2008-05-16 16:31 ` [patch 08/22] vfs: immutable inode checking cleanup Miklos Szeredi
2008-05-16 16:31 ` [patch 09/22] vfs: truncate: dont check immutable twice Miklos Szeredi
2008-05-16 16:31 ` [patch 10/22] vfs: create file_truncate() helper Miklos Szeredi
2008-05-16 16:31 ` [patch 11/22] vfs: utimes immutable fix Miklos Szeredi
2008-05-16 16:31 ` [patch 12/22] vfs: utimes cleanup Miklos Szeredi
2008-05-16 16:31 ` [patch 13/22] vfs: add path_create() and path_mknod() Miklos Szeredi
2008-05-16 16:31 ` [patch 14/22] vfs: add path_mkdir() Miklos Szeredi
2008-05-16 16:31 ` [patch 15/22] vfs: add path_rmdir() Miklos Szeredi
2008-05-16 16:31 ` [patch 16/22] vfs: add path_unlink() Miklos Szeredi
2008-05-16 16:31 ` [patch 17/22] vfs: add path_symlink() Miklos Szeredi
2008-05-17 1:14 ` Tetsuo Handa
2008-05-17 7:36 ` Miklos Szeredi
2008-05-16 16:31 ` [patch 18/22] vfs: add path_link() Miklos Szeredi
2008-05-16 16:31 ` [patch 19/22] vfs: add path_rename() Miklos Szeredi
2008-05-16 16:31 ` [patch 20/22] vfs: add path_setattr() Miklos Szeredi
2008-05-16 16:31 ` [patch 21/22] vfs: add path_setxattr() Miklos Szeredi
2008-05-16 16:31 ` [patch 22/22] vfs: add path_removexattr() Miklos Szeredi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080516163216.566100748@szeredi.hu \
--to=miklos@szeredi.hu \
--cc=akpm@linux-foundation.org \
--cc=ezk@cs.sunysb.edu \
--cc=hch@infradead.org \
--cc=jeffm@suse.de \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=viro@ZenIV.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®