|
@@ -237,7 +237,7 @@ static int __do_lo_send_write(struct file *file,
|
|
file_end_write(file);
|
|
file_end_write(file);
|
|
if (likely(bw == len))
|
|
if (likely(bw == len))
|
|
return 0;
|
|
return 0;
|
|
- printk(KERN_ERR "loop: Write error at byte offset %llu, length %i.\n",
|
|
|
|
|
|
+ printk_ratelimited(KERN_ERR "loop: Write error at byte offset %llu, length %i.\n",
|
|
(unsigned long long)pos, len);
|
|
(unsigned long long)pos, len);
|
|
if (bw >= 0)
|
|
if (bw >= 0)
|
|
bw = -EIO;
|
|
bw = -EIO;
|
|
@@ -277,7 +277,7 @@ static int do_lo_send_write(struct loop_device *lo, struct bio_vec *bvec,
|
|
return __do_lo_send_write(lo->lo_backing_file,
|
|
return __do_lo_send_write(lo->lo_backing_file,
|
|
page_address(page), bvec->bv_len,
|
|
page_address(page), bvec->bv_len,
|
|
pos);
|
|
pos);
|
|
- printk(KERN_ERR "loop: Transfer error at byte offset %llu, "
|
|
|
|
|
|
+ printk_ratelimited(KERN_ERR "loop: Transfer error at byte offset %llu, "
|
|
"length %i.\n", (unsigned long long)pos, bvec->bv_len);
|
|
"length %i.\n", (unsigned long long)pos, bvec->bv_len);
|
|
if (ret > 0)
|
|
if (ret > 0)
|
|
ret = -EIO;
|
|
ret = -EIO;
|
|
@@ -316,7 +316,7 @@ static int lo_send(struct loop_device *lo, struct bio *bio, loff_t pos)
|
|
out:
|
|
out:
|
|
return ret;
|
|
return ret;
|
|
fail:
|
|
fail:
|
|
- printk(KERN_ERR "loop: Failed to allocate temporary page for write.\n");
|
|
|
|
|
|
+ printk_ratelimited(KERN_ERR "loop: Failed to allocate temporary page for write.\n");
|
|
ret = -ENOMEM;
|
|
ret = -ENOMEM;
|
|
goto out;
|
|
goto out;
|
|
}
|
|
}
|
|
@@ -345,7 +345,7 @@ lo_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
|
|
size = p->bsize;
|
|
size = p->bsize;
|
|
|
|
|
|
if (lo_do_transfer(lo, READ, page, buf->offset, p->page, p->offset, size, IV)) {
|
|
if (lo_do_transfer(lo, READ, page, buf->offset, p->page, p->offset, size, IV)) {
|
|
- printk(KERN_ERR "loop: transfer error block %ld\n",
|
|
|
|
|
|
+ printk_ratelimited(KERN_ERR "loop: transfer error block %ld\n",
|
|
page->index);
|
|
page->index);
|
|
size = -EINVAL;
|
|
size = -EINVAL;
|
|
}
|
|
}
|