mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 12:17:12 +09:00
nfsd: safer handling of corrupted c_type
[ Upstream commit c25bf185e5 ]
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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e585a8b540
commit
ca0cac3373
@@ -469,8 +469,7 @@ found_entry:
|
||||
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);
|
||||
}
|
||||
|
||||
goto out;
|
||||
|
||||
Reference in New Issue
Block a user