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

Commit 5034990e authored by Aneesh Kumar K.V's avatar Aneesh Kumar K.V Committed by Eric Van Hensbergen
Browse files

fs/9p: Fid is not valid after a failed clunk.



free the fid even in case of failed clunk.

Signed-off-by: default avatarAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: default avatarEric Van Hensbergen <ericvh@gmail.com>
parent 52c14ab3
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -1250,9 +1250,11 @@ int p9_client_clunk(struct p9_fid *fid)
	P9_DPRINTK(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
	P9_DPRINTK(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);


	p9_free_req(clnt, req);
	p9_free_req(clnt, req);
	p9_fid_destroy(fid);

error:
error:
	/*
	 * Fid is not valid even after a failed clunk
	 */
	p9_fid_destroy(fid);
	return err;
	return err;
}
}
EXPORT_SYMBOL(p9_client_clunk);
EXPORT_SYMBOL(p9_client_clunk);