diff options
author | J. Bruce Fields <bfields@redhat.com> | 2016-10-04 12:53:49 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2016-10-07 14:53:33 -0400 |
commit | ff30f08c32f932272f9bd4c1caca824ffc939346 (patch) | |
tree | 1ec4c7d9cabff1db91555a8d6cdafbc79816030b /fs/nfsd/nfsproc.c | |
parent | 09bb8bfffd29c3dffb72bc2c69a062dfb1ae624c (diff) | |
download | op-kernel-dev-ff30f08c32f932272f9bd4c1caca824ffc939346.zip op-kernel-dev-ff30f08c32f932272f9bd4c1caca824ffc939346.tar.gz |
nfsd: only WARN once on unmapped errors
No need to spam the logs here.
The only drawback is losing information if we ever encounter two
different unmapped errors, but in practice we've rarely see even one.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfsproc.c')
-rw-r--r-- | fs/nfsd/nfsproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfsproc.c b/fs/nfsd/nfsproc.c index e921476..a56ee10 100644 --- a/fs/nfsd/nfsproc.c +++ b/fs/nfsd/nfsproc.c @@ -798,7 +798,7 @@ nfserrno (int errno) if (nfs_errtbl[i].syserr == errno) return nfs_errtbl[i].nfserr; } - WARN(1, "nfsd: non-standard errno: %d\n", errno); + WARN_ONCE(1, "nfsd: non-standard errno: %d\n", errno); return nfserr_io; } |