* [PATCH] use lookup_create in af_unix
@ 2005-05-12 10:23 Christoph Hellwig
2005-05-19 19:27 ` David S. Miller
0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2005-05-12 10:23 UTC (permalink / raw)
To: davem; +Cc: netdev
currently it opencodes it, but that's in the way of chaning the
lookup_hash interface.
I'd prefer to disallow modular af_unix over exporting lookup_create,
but I'll leave that to you.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Index: fs/namei.c
===================================================================
--- eed337ef5e9ae7d62caa84b7974a11fddc7f06e0/fs/namei.c (mode:100644 sha1:defe6781e003c208fc0a4b6e92bcf1dc2a0465de)
+++ uncommitted/fs/namei.c (mode:100644)
@@ -1580,6 +1580,7 @@
fail:
return dentry;
}
+EXPORT_SYMBOL_GPL(lookup_create);
int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
{
Index: net/unix/af_unix.c
===================================================================
--- eed337ef5e9ae7d62caa84b7974a11fddc7f06e0/net/unix/af_unix.c (mode:100644 sha1:c478fc8db7768428580d23381856fa53fa31add2)
+++ uncommitted/net/unix/af_unix.c (mode:100644)
@@ -770,33 +770,12 @@
err = path_lookup(sunaddr->sun_path, LOOKUP_PARENT, &nd);
if (err)
goto out_mknod_parent;
- /*
- * Yucky last component or no last component at all?
- * (foo/., foo/.., /////)
- */
- err = -EEXIST;
- if (nd.last_type != LAST_NORM)
- goto out_mknod;
- /*
- * Lock the directory.
- */
- down(&nd.dentry->d_inode->i_sem);
- /*
- * Do the final lookup.
- */
- dentry = lookup_hash(&nd.last, nd.dentry);
+
+ dentry = lookup_create(&nd, 0);
err = PTR_ERR(dentry);
if (IS_ERR(dentry))
goto out_mknod_unlock;
- err = -ENOENT;
- /*
- * Special case - lookup gave negative, but... we had foo/bar/
- * From the vfs_mknod() POV we just have a negative dentry -
- * all is fine. Let's be bastards - you had / on the end, you've
- * been asking for (non-existent) directory. -ENOENT for you.
- */
- if (nd.last.name[nd.last.len] && !dentry->d_inode)
- goto out_mknod_dput;
+
/*
* All right, let's create it.
*/
@@ -845,7 +824,6 @@
dput(dentry);
out_mknod_unlock:
up(&nd.dentry->d_inode->i_sem);
-out_mknod:
path_release(&nd);
out_mknod_parent:
if (err==-EEXIST)
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] use lookup_create in af_unix
2005-05-12 10:23 [PATCH] use lookup_create in af_unix Christoph Hellwig
@ 2005-05-19 19:27 ` David S. Miller
2005-05-19 19:30 ` Christoph Hellwig
0 siblings, 1 reply; 4+ messages in thread
From: David S. Miller @ 2005-05-19 19:27 UTC (permalink / raw)
To: hch; +Cc: netdev
From: Christoph Hellwig <hch@lst.de>
Date: Thu, 12 May 2005 12:23:36 +0200
> currently it opencodes it, but that's in the way of chaning the
> lookup_hash interface.
>
> I'd prefer to disallow modular af_unix over exporting lookup_create,
> but I'll leave that to you.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
This patch looks fine. Applied, thanks Chirstophe.
Maybe someone should add to the comments above these fs/namei.c
functions that they will return with the semaphore held even
in error cases.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] use lookup_create in af_unix
2005-05-19 19:27 ` David S. Miller
@ 2005-05-19 19:30 ` Christoph Hellwig
2005-05-19 19:34 ` David S. Miller
0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2005-05-19 19:30 UTC (permalink / raw)
To: David S. Miller; +Cc: netdev
On Thu, May 19, 2005 at 12:27:56PM -0700, David S. Miller wrote:
> Maybe someone should add to the comments above these fs/namei.c
> functions that they will return with the semaphore held even
> in error cases.
I sent a patch to Andrew that adds this comment and various others that
were in af_unix.c to lookup_create.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2005-05-19 19:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-12 10:23 [PATCH] use lookup_create in af_unix Christoph Hellwig
2005-05-19 19:27 ` David S. Miller
2005-05-19 19:30 ` Christoph Hellwig
2005-05-19 19:34 ` David S. Miller
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).