mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
[PATCH] add some comments to lookup_create()
In a duplicate of lookup_create in the af_unix code Al commented what's going on nicely, so let's bring that over to lookup_create before the copy is going away (I'll send a patch soon) Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
70f09f1fdf
commit
c663e5d80e
1 changed files with 18 additions and 2 deletions
20
fs/namei.c
20
fs/namei.c
|
@ -1577,19 +1577,35 @@ do_link:
|
||||||
*
|
*
|
||||||
* Simple function to lookup and return a dentry and create it
|
* Simple function to lookup and return a dentry and create it
|
||||||
* if it doesn't exist. Is SMP-safe.
|
* if it doesn't exist. Is SMP-safe.
|
||||||
|
*
|
||||||
|
* Returns with nd->dentry->d_inode->i_sem locked.
|
||||||
*/
|
*/
|
||||||
struct dentry *lookup_create(struct nameidata *nd, int is_dir)
|
struct dentry *lookup_create(struct nameidata *nd, int is_dir)
|
||||||
{
|
{
|
||||||
struct dentry *dentry;
|
struct dentry *dentry = ERR_PTR(-EEXIST);
|
||||||
|
|
||||||
down(&nd->dentry->d_inode->i_sem);
|
down(&nd->dentry->d_inode->i_sem);
|
||||||
dentry = ERR_PTR(-EEXIST);
|
/*
|
||||||
|
* Yucky last component or no last component at all?
|
||||||
|
* (foo/., foo/.., /////)
|
||||||
|
*/
|
||||||
if (nd->last_type != LAST_NORM)
|
if (nd->last_type != LAST_NORM)
|
||||||
goto fail;
|
goto fail;
|
||||||
nd->flags &= ~LOOKUP_PARENT;
|
nd->flags &= ~LOOKUP_PARENT;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Do the final lookup.
|
||||||
|
*/
|
||||||
dentry = lookup_hash(&nd->last, nd->dentry);
|
dentry = lookup_hash(&nd->last, nd->dentry);
|
||||||
if (IS_ERR(dentry))
|
if (IS_ERR(dentry))
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 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 (!is_dir && nd->last.name[nd->last.len] && !dentry->d_inode)
|
if (!is_dir && nd->last.name[nd->last.len] && !dentry->d_inode)
|
||||||
goto enoent;
|
goto enoent;
|
||||||
return dentry;
|
return dentry;
|
||||||
|
|
Loading…
Reference in a new issue