VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Jiri Slaby <jslaby@suse.cz> 2010-03-05 13:42:42 -0800 committer: Linus Torvalds <torvalds@linux-foundation.org> 2010-03-06 11:26:29 -0800 commit: d554ed895dc8f293cc712c71f14b101ace82579a parent: 221e3ebf6d5f2625373573155924e39f196c5d3d
Commit Summary:
fs: use rlimit helpers
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/binfmt_aout.c b/fs/binfmt_aout.c
index fdd397099172..61dd00a6c7b4 100644
--- a/fs/binfmt_aout.c
+++ b/fs/binfmt_aout.c
@@ -247,7 +247,7 @@ static int load_aout_binary(struct linux_binprm * bprm, struct pt_regs * regs)
 	 * size limits imposed on them by creating programs with large
 	 * arrays in the data or bss.
 	 */
-	rlim = current->signal->rlim[RLIMIT_DATA].rlim_cur;
+	rlim = rlimit(RLIMIT_DATA);
 	if (rlim >= RLIM_INFINITY)
 		rlim = ~0;
 	if (ex.a_data + ex.a_bss > rlim)