Remove some harmless cruft from vn_generic_copy_file_range().
An earlier version of the patch had code that set "error" between line#s 2797-2799. When that code was moved, the second check for "error != 0" could never be true and the check became harmless cruft. This patch removes the cruft, mainly to make Coverity happy. Reported by: asomers, cem
This commit is contained in:
parent
565bed2b15
commit
d14edd797e
@ -2798,8 +2798,6 @@ vn_generic_copy_file_range(struct vnode *invp, off_t *inoffp,
|
||||
if (VOP_PATHCONF(invp, _PC_MIN_HOLE_SIZE, &holein) != 0)
|
||||
holein = 0;
|
||||
VOP_UNLOCK(invp, 0);
|
||||
if (error != 0)
|
||||
goto out;
|
||||
|
||||
mp = NULL;
|
||||
error = vn_start_write(outvp, &mp, V_WAIT);
|
||||
|
Loading…
Reference in New Issue
Block a user