cluster-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
From: Steven Whitehouse <swhiteho@redhat.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] [PATCH 08/19] GFS2: Clean up gfs2_create
Date: Thu,  8 Sep 2011 16:50:17 +0100	[thread overview]
Message-ID: <1315497028-8473-9-git-send-email-swhiteho@redhat.com> (raw)
In-Reply-To: <1315497028-8473-1-git-send-email-swhiteho@redhat.com>

If we pass through knowledge of whether the creation is intended to be
exclusive or not, then we can deal with that in gfs2_create_inode
and remove one set of locking. Also this removes the loop in
gfs2_create and simplifies the code a bit.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>

diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
index a0b53d3..2af6905 100644
--- a/fs/gfs2/inode.c
+++ b/fs/gfs2/inode.c
@@ -663,7 +663,7 @@ static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip,
 
 static int gfs2_create_inode(struct inode *dir, struct dentry *dentry,
 			     unsigned int mode, dev_t dev, const char *symname,
-			     unsigned int size)
+			     unsigned int size, int excl)
 {
 	const struct qstr *name = &dentry->d_name;
 	struct gfs2_holder ghs[2];
@@ -683,6 +683,12 @@ static int gfs2_create_inode(struct inode *dir, struct dentry *dentry,
 		goto fail;
 
 	error = create_ok(dip, name, mode);
+	if ((error == -EEXIST) && S_ISREG(mode) && !excl) {
+		inode = gfs2_lookupi(dir, &dentry->d_name, 0);
+		gfs2_glock_dq_uninit(ghs);
+		d_instantiate(dentry, inode);
+		return IS_ERR(inode) ? PTR_ERR(inode) : 0;
+	}
 	if (error)
 		goto fail_gunlock;
 
@@ -760,24 +766,10 @@ fail:
 static int gfs2_create(struct inode *dir, struct dentry *dentry,
 		       int mode, struct nameidata *nd)
 {
-	struct inode *inode;
-	int ret;
-
-	for (;;) {
-		ret = gfs2_create_inode(dir, dentry, S_IFREG | mode, 0, NULL, 0);
-		if (ret != -EEXIST || (nd && (nd->flags & LOOKUP_EXCL)))
-			return ret;
-
-		inode = gfs2_lookupi(dir, &dentry->d_name, 0);
-		if (inode) {
-			if (!IS_ERR(inode))
-				break;
-			return PTR_ERR(inode);
-		}
-	}
-
-	d_instantiate(dentry, inode);
-	return 0;
+	int excl = 0;
+	if (nd && (nd->flags & LOOKUP_EXCL))
+		excl = 1;
+	return gfs2_create_inode(dir, dentry, S_IFREG | mode, 0, NULL, 0, excl);
 }
 
 /**
@@ -1135,7 +1127,7 @@ static int gfs2_symlink(struct inode *dir, struct dentry *dentry,
 	if (size > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode) - 1)
 		return -ENAMETOOLONG;
 
-	return gfs2_create_inode(dir, dentry, S_IFLNK | S_IRWXUGO, 0, symname, size);
+	return gfs2_create_inode(dir, dentry, S_IFLNK | S_IRWXUGO, 0, symname, size, 0);
 }
 
 /**
@@ -1149,7 +1141,7 @@ static int gfs2_symlink(struct inode *dir, struct dentry *dentry,
 
 static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, int mode)
 {
-	return gfs2_create_inode(dir, dentry, S_IFDIR | mode, 0, NULL, 0);
+	return gfs2_create_inode(dir, dentry, S_IFDIR | mode, 0, NULL, 0, 0);
 }
 
 /**
@@ -1164,7 +1156,7 @@ static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, int mode)
 static int gfs2_mknod(struct inode *dir, struct dentry *dentry, int mode,
 		      dev_t dev)
 {
-	return gfs2_create_inode(dir, dentry, mode, dev, NULL, 0);
+	return gfs2_create_inode(dir, dentry, mode, dev, NULL, 0, 0);
 }
 
 /*
-- 
1.7.4



  parent reply	other threads:[~2011-09-08 15:50 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-08 15:50 [Cluster-devel] Current -nmw tree content Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 01/19] GFS2: Clean up dir hash table reading Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 02/19] GFS2: Split data write & wait in fsync Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 03/19] GFS2: Fix bug-trap in ail flush code Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 04/19] GFS2: Make atime checks more efficient Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 05/19] GFS2: Fix inode allocation error path Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 06/19] GFS2: Fix bug trap and journaled data fsync Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 07/19] GFS2: Use ->dirty_inode() Steven Whitehouse
2011-09-08 15:50 ` Steven Whitehouse [this message]
2011-09-08 15:50 ` [Cluster-devel] [PATCH 09/19] GFS2: Fix lseek after SEEK_DATA, SEEK_HOLE have been added Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 10/19] GFS2: Use rbtree for resource groups and clean up bitmap buffer ref count scheme Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 11/19] GFS2: Make resource groups "append only" during life of fs Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 12/19] GFS2: Cache the most recently used resource group in the inode Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 13/19] GFS2: Remove obsolete assert Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 14/19] GFS2: Call do_strip() directly from recursive_scan() Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 15/19] GFS2: Use cached rgrp in gfs2_rlist_add() Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 16/19] GFS2: Fix AIL flush issue during fsync Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 17/19] GFS2: Correctly set goal block after allocation Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 18/19] GFS2: Clean up ->page_mkwrite Steven Whitehouse
2011-09-08 15:50 ` [Cluster-devel] [PATCH 19/19] GFS2: Fix off-by-one in gfs2_blk2rgrpd Steven Whitehouse

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=1315497028-8473-9-git-send-email-swhiteho@redhat.com \
    --to=swhiteho@redhat.com \
    /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;
as well as URLs for NNTP newsgroup(s).