Commit 93c128e7 authored by Jeff Layton's avatar Jeff Layton Committed by Chuck Lever
Browse files

nfsd: ensure we always call fh_verify_error tracepoint



This is a conditional tracepoint. Call it every time, not just when
nfs_permission fails.

Signed-off-by: default avatarJeff Layton <jlayton@kernel.org>
Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
parent bd86c69d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -392,8 +392,8 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type, int access)
skip_pseudoflavor_check:
	/* Finally, check access permissions. */
	error = nfsd_permission(rqstp, exp, dentry, access);
	trace_nfsd_fh_verify_err(rqstp, fhp, type, access, error);
out:
	trace_nfsd_fh_verify_err(rqstp, fhp, type, access, error);
	if (error == nfserr_stale)
		nfsd_stats_fh_stale_inc(exp);
	return error;