FreeBSD Bugzilla – Attachment 254324 Details for
Bug 282134
[ext2fs] watchdogd fired (with one hour timeout)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Handle a range from negative to positive
ext3fs.patch (text/plain), 529 bytes, created by
Doug Moore
on 2024-10-18 08:52:55 UTC
(
hide
)
Description:
Handle a range from negative to positive
Filename:
MIME Type:
Creator:
Doug Moore
Created:
2024-10-18 08:52:55 UTC
Size:
529 bytes
patch
obsolete
>diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c >index ff18c50546dd..b20d58884fa6 100644 >--- a/sys/kern/vfs_subr.c >+++ b/sys/kern/vfs_subr.c >@@ -2629,6 +2629,8 @@ v_inval_buf_range_locked(struct vnode *vp, struct bufobj *bo, > do { > bv = clean ? &bo->bo_clean : &bo->bo_dirty; > bp = BUF_PCTRIE_LOOKUP_GE(&bv->bv_root, startlbn); >+ if (bp == NULL && startlbn < 0 && endlbn > 0) >+ bp = BUF_PCTRIE_LOOKUP_GE(&bv->bv_root, 0); > if (bp == NULL || bp->b_lblkno >= endlbn || > bp->b_lblkno < startlbn) > continue;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 282134
: 254324 |
254341
|
254350