Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751964AbbEFJXV (ORCPT ); Wed, 6 May 2015 05:23:21 -0400 Received: from szxga01-in.huawei.com ([58.251.152.64]:44342 "EHLO szxga01-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751078AbbEFJXS (ORCPT ); Wed, 6 May 2015 05:23:18 -0400 Message-ID: <5549DD6C.40806@huawei.com> Date: Wed, 6 May 2015 17:22:52 +0800 From: "long.wanglong" User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: Hillf Danton CC: linux-kernel , Wang Kai , peifeiyue Subject: Re: [RFC] kernel random segmentation fault? References: <0b8901d087d4$eafcd8c0$c0f68a40$@alibaba-inc.com> <0b8a01d087d5$7d3a9740$77afc5c0$@alibaba-inc.com> In-Reply-To: <0b8a01d087d5$7d3a9740$77afc5c0$@alibaba-inc.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.111.88.174] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2309 Lines: 88 On 2015/5/6 16:20, Hillf Danton wrote: >> >> Hi all: >> >> I meet a kernel problem about the random segmentation fault(x86_64). In my testcase, the size of local variables exceeds 20MB. >> when run the testcase, it will cause segmentation fault(because the default stack size limit is 8192KB). >> when I increase the stack size limit to 1024000KB(ulimit -s 1024000), the testcase will pass. >> >> But when I run the testcase 100 times, it will cause random segmentation fault. >> >> Maybe the commit fee7e49d45149fba60156f5b59014f764d3e3728 "mm: propagate error from stack expansion even for guard page" >> cause this problems, when I revert it, the testcase will not cause random segmentation fault problem. >> >> Can anyone give some ideas about this problem? >> >> Best Regards >> Wang Long >> >> ############ Test Environment ############# >> >> # uname -a >> Linux ivybridge 4.1.0-rc2+ #3 SMP PREEMPT Wed May 6 10:46:57 CST 2015 x86_64 x86_64 x86_64 GNU/Linux >> >> >> ############ The Testcase ################ >> >> #include >> #include >> #include >> >> #define KB *1024 >> #define MB *(1024*1024) >> #define GB *(1024*1024*1024) >> >> int main(int argc, char** argv) >> { >> int ret; >> struct rlimit rlim; >> >> rlim.rlim_cur=20 MB; >> rlim.rlim_max=20 MB; > > Can you please get rlimit before setting it? > And try again without reverting fee7e49d45? > Hi,Hillf Danton After add getrlimit function before setting it. the testcase will not cause random segmentation fault problem. Could you please explain why? Are there any special considerations when we use setrlimit and getrlimit functions? Best Regards Wang Long >> ret = setrlimit(RLIMIT_AS, &rlim); >> if ( 0 > ret) >> { >> perror("setrlimit failed"); >> exit(1); >> } >> >> printf("setrlimit success\n"); >> >> char tmp[20 MB]; >> int i = 0; >> >> for (i = 0; i < 20 MB; i++) >> { >> tmp[i]=1; >> } >> >> printf("test success\n"); >> exit(1); >> } >> > > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/