Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Jun 2021 01:45:09 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 1fef441079c3 - stable/13 - Fix limit testing after 1762f674ccb571e6 ktrace commit.
Message-ID:  <202106130145.15D1j9jM052008@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=1fef441079c38de177f3456e54f55931aebf2655

commit 1fef441079c38de177f3456e54f55931aebf2655
Author:     Mateusz Guzik <mjg@FreeBSD.org>
AuthorDate: 2021-05-22 20:12:31 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2021-06-13 01:22:34 +0000

    Fix limit testing after 1762f674ccb571e6 ktrace commit.
    
    (cherry picked from commit e71d5c7331700504e58cf1a35dca529381723e02)
---
 sys/kern/vfs_vnops.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/kern/vfs_vnops.c b/sys/kern/vfs_vnops.c
index 9c3d261a25c4..cf6a1f715d83 100644
--- a/sys/kern/vfs_vnops.c
+++ b/sys/kern/vfs_vnops.c
@@ -2369,7 +2369,7 @@ vn_rlimit_fsize(const struct vnode *vp, const struct uio *uio,
 		return (0);
 	ktr_write = (td->td_pflags & TDP_INKTRACE) != 0;
 	lim = ktr_write ? td->td_ktr_io_lim : lim_cur(td, RLIMIT_FSIZE);
-	if ((uoff_t)uio->uio_offset + uio->uio_resid < lim)
+	if ((uoff_t)uio->uio_offset + uio->uio_resid <= lim)
 		return (0);
 
 	if (!ktr_write || ktr_filesize_limit_signal) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106130145.15D1j9jM052008>