mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
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: Jeff Layton <jlayton@kernel.org> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
This commit is contained in:
@@ -392,8 +392,8 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type, int access)
|
|||||||
skip_pseudoflavor_check:
|
skip_pseudoflavor_check:
|
||||||
/* Finally, check access permissions. */
|
/* Finally, check access permissions. */
|
||||||
error = nfsd_permission(rqstp, exp, dentry, access);
|
error = nfsd_permission(rqstp, exp, dentry, access);
|
||||||
trace_nfsd_fh_verify_err(rqstp, fhp, type, access, error);
|
|
||||||
out:
|
out:
|
||||||
|
trace_nfsd_fh_verify_err(rqstp, fhp, type, access, error);
|
||||||
if (error == nfserr_stale)
|
if (error == nfserr_stale)
|
||||||
nfsd_stats_fh_stale_inc(exp);
|
nfsd_stats_fh_stale_inc(exp);
|
||||||
return error;
|
return error;
|
||||||
|
Reference in New Issue
Block a user