git: a1ef0386c94f - stable/13 - Fix up macro use in lim_cur

Mateusz Guzik mjg at FreeBSD.org
Mon Jun 7 00:40:16 UTC 2021


The branch stable/13 has been updated by mjg:

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

commit a1ef0386c94f9e2aa42f4443ea04d8f6c7931aff
Author:     Mateusz Guzik <mjg at FreeBSD.org>
AuthorDate: 2021-05-29 17:46:37 +0000
Commit:     Mateusz Guzik <mjg at FreeBSD.org>
CommitDate: 2021-06-07 00:34:55 +0000

    Fix up macro use in lim_cur
    
    (cherry picked from commit dde5c031ed0d93d080442b26133e9ea800bbcd22)
---
 sys/sys/resourcevar.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/sys/resourcevar.h b/sys/sys/resourcevar.h
index e83b170ca291..d1c9e6d4985f 100644
--- a/sys/sys/resourcevar.h
+++ b/sys/sys/resourcevar.h
@@ -135,7 +135,7 @@ rlim_t	 lim_cur(struct thread *td, int which);
 	int _which = (which);						\
 	if (__builtin_constant_p(which) && which != RLIMIT_DATA &&	\
 	    which != RLIMIT_STACK && which != RLIMIT_VMEM) {		\
-		_rlim = td->td_limit->pl_rlimit[which].rlim_cur;	\
+		_rlim = _td->td_limit->pl_rlimit[_which].rlim_cur;	\
 	} else {							\
 		_rlim = lim_cur(_td, _which);				\
 	}								\


More information about the dev-commits-src-all mailing list