提交 a58c26bb 编写于 作者: J Jiri Slaby 提交者: Martin Schwidefsky

[S390] use helpers for rlimits

Make sure compiler won't do weird things with limits. E.g. fetching
them twice may return 2 different values after writable limits are
implemented.

I.e. either use rlimit helpers added in
3e10e716
or ACCESS_ONCE if not applicable.

Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: linux390@de.ibm.com
Cc: linux-s390@vger.kernel.org
Signed-off-by: NJiri Slaby <jslaby@suse.cz>
Signed-off-by: NMartin Schwidefsky <schwidefsky@de.ibm.com>
上级 16e1a577
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
static inline unsigned long mmap_base(void) static inline unsigned long mmap_base(void)
{ {
unsigned long gap = current->signal->rlim[RLIMIT_STACK].rlim_cur; unsigned long gap = rlimit(RLIMIT_STACK);
if (gap < MIN_GAP) if (gap < MIN_GAP)
gap = MIN_GAP; gap = MIN_GAP;
...@@ -61,7 +61,7 @@ static inline int mmap_is_legacy(void) ...@@ -61,7 +61,7 @@ static inline int mmap_is_legacy(void)
#endif #endif
return sysctl_legacy_va_layout || return sysctl_legacy_va_layout ||
(current->personality & ADDR_COMPAT_LAYOUT) || (current->personality & ADDR_COMPAT_LAYOUT) ||
current->signal->rlim[RLIMIT_STACK].rlim_cur == RLIM_INFINITY; rlimit(RLIMIT_STACK) == RLIM_INFINITY;
} }
#ifndef CONFIG_64BIT #ifndef CONFIG_64BIT
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册