git: 18c08fda2498 - stable/15 - vop_read_pgcache_post(): the vnode is unlocked
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 21 Jun 2026 10:16:00 UTC
The branch stable/15 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=18c08fda2498f2cb6c26f68512f0f5b930eddefe
commit 18c08fda2498f2cb6c26f68512f0f5b930eddefe
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2026-05-22 03:07:59 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2026-06-21 10:05:29 +0000
vop_read_pgcache_post(): the vnode is unlocked
(cherry picked from commit 0c85df0065146516d5bacfc80d52d9ee6b33b96d)
---
sys/kern/vfs_subr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index ce01bf0110e4..7cc13be5109a 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -6506,7 +6506,7 @@ vop_read_pgcache_post(void *ap, int rc)
struct vop_read_pgcache_args *a = ap;
if (rc == 0) {
- VFS_KNOTE_LOCKED(a->a_vp, NOTE_READ);
+ VFS_KNOTE_UNLOCKED(a->a_vp, NOTE_READ);
INOTIFY(a->a_vp, IN_ACCESS);
}
}