Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F136936768
D23755.id68570.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
904 B
Referenced Files
None
Subscribers
None
D23755.id68570.diff
View Options
Index: head/sys/vm/vnode_pager.c
===================================================================
--- head/sys/vm/vnode_pager.c
+++ head/sys/vm/vnode_pager.c
@@ -628,8 +628,11 @@
bwait(bp, PVM, "vnsrd");
- if ((bp->b_ioflags & BIO_ERROR) != 0)
- error = EIO;
+ if ((bp->b_ioflags & BIO_ERROR) != 0) {
+ KASSERT(bp->b_error != 0,
+ ("%s: buf error but b_error == 0\n", __func__));
+ error = bp->b_error;
+ }
/*
* free the buffer header back to the swap buffer pool
@@ -1113,7 +1116,9 @@
off_t tfoff, nextoff;
int i, error;
- error = (bp->b_ioflags & BIO_ERROR) != 0 ? EIO : 0;
+ KASSERT((bp->b_ioflags & BIO_ERROR) == 0 || bp->b_error != 0,
+ ("%s: buf error but b_error == 0\n", __func__));
+ error = (bp->b_ioflags & BIO_ERROR) != 0 ? bp->b_error : 0;
object = bp->b_vp->v_object;
if (error == 0 && bp->b_bcount != bp->b_npages * PAGE_SIZE) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Nov 21, 6:08 PM (16 h, 37 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
25784568
Default Alt Text
D23755.id68570.diff (904 B)
Attached To
Mode
D23755: Don't convert all lower-layer errors to EIO.
Attached
Detach File
Event Timeline
Log In to Comment