Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f2692ea8 authored by Gu Zheng's avatar Gu Zheng Committed by Eric Van Hensbergen
Browse files

fs/9p: Remove the unused variable "err" in v9fs_vfs_getattr()



Delete the unused variable "err" in v9fs_vfs_getattr()

Signed-off-by: default avatarGu Zheng <guz.fnst@cn.fujitsu.com>
Signed-off-by: default avatarEric Van Hensbergen <ericvh@gmail.com>
parent 80b45261
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -1054,13 +1054,11 @@ static int
v9fs_vfs_getattr(struct vfsmount *mnt, struct dentry *dentry,
		 struct kstat *stat)
{
	int err;
	struct v9fs_session_info *v9ses;
	struct p9_fid *fid;
	struct p9_wstat *st;

	p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
	err = -EPERM;
	v9ses = v9fs_dentry2v9ses(dentry);
	if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) {
		generic_fillattr(dentry->d_inode, stat);