mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 06:00:52 +07:00
nfsd: safer handling of corrupted c_type
This can only happen if there's a bug somewhere, so let's make it a WARN not a printk. Also, I think it's safest to ignore the corruption rather than trying to fix it by removing a cache entry. Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
027690c75e
commit
c25bf185e5
@ -477,8 +477,7 @@ int nfsd_cache_lookup(struct svc_rqst *rqstp)
|
||||
rtn = RC_REPLY;
|
||||
break;
|
||||
default:
|
||||
printk(KERN_WARNING "nfsd: bad repcache type %d\n", rp->c_type);
|
||||
nfsd_reply_cache_free_locked(b, rp, nn);
|
||||
WARN_ONCE(1, "nfsd: bad repcache type %d\n", rp->c_type);
|
||||
}
|
||||
|
||||
out_trace:
|
||||
|
Loading…
Reference in New Issue
Block a user