9p: remove deprecated v9fs_fid_lookup_remove()
This patch removes the v9fs_fid_lookup_remove which is no longer used. Based on original patch from Adrian Bunk <bunk@stusta.de> which used #if 0 to isolate the code. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
This commit is contained in:
parent
27a2a5ff41
commit
fbcb7599e4
17
fs/9p/fid.c
17
fs/9p/fid.c
|
@ -92,23 +92,6 @@ struct p9_fid *v9fs_fid_lookup(struct dentry *dentry)
|
||||||
return fid;
|
return fid;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct p9_fid *v9fs_fid_lookup_remove(struct dentry *dentry)
|
|
||||||
{
|
|
||||||
struct p9_fid *fid;
|
|
||||||
struct v9fs_dentry *dent;
|
|
||||||
|
|
||||||
dent = dentry->d_fsdata;
|
|
||||||
fid = v9fs_fid_lookup(dentry);
|
|
||||||
if (!IS_ERR(fid)) {
|
|
||||||
spin_lock(&dent->lock);
|
|
||||||
list_del(&fid->dlist);
|
|
||||||
spin_unlock(&dent->lock);
|
|
||||||
}
|
|
||||||
|
|
||||||
return fid;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* v9fs_fid_clone - lookup the fid for a dentry, clone a private copy and
|
* v9fs_fid_clone - lookup the fid for a dentry, clone a private copy and
|
||||||
* release it
|
* release it
|
||||||
|
|
|
@ -28,6 +28,5 @@ struct v9fs_dentry {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct p9_fid *v9fs_fid_lookup(struct dentry *dentry);
|
struct p9_fid *v9fs_fid_lookup(struct dentry *dentry);
|
||||||
struct p9_fid *v9fs_fid_lookup_remove(struct dentry *dentry);
|
|
||||||
struct p9_fid *v9fs_fid_clone(struct dentry *dentry);
|
struct p9_fid *v9fs_fid_clone(struct dentry *dentry);
|
||||||
int v9fs_fid_add(struct dentry *dentry, struct p9_fid *fid);
|
int v9fs_fid_add(struct dentry *dentry, struct p9_fid *fid);
|
||||||
|
|
Loading…
Reference in New Issue