aboutsummaryrefslogtreecommitdiffstats
path: root/lib/iov_iter.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/iov_iter.c')
-rw-r--r--lib/iov_iter.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/iov_iter.c b/lib/iov_iter.c
index 60abc44385b7..fc9fb29d00eb 100644
--- a/lib/iov_iter.c
+++ b/lib/iov_iter.c
@@ -790,6 +790,8 @@ void iov_iter_revert(struct iov_iter *i, size_t unroll)
790{ 790{
791 if (!unroll) 791 if (!unroll)
792 return; 792 return;
793 if (WARN_ON(unroll > MAX_RW_COUNT))
794 return;
793 i->count += unroll; 795 i->count += unroll;
794 if (unlikely(i->type & ITER_PIPE)) { 796 if (unlikely(i->type & ITER_PIPE)) {
795 struct pipe_inode_info *pipe = i->pipe; 797 struct pipe_inode_info *pipe = i->pipe;