From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751842AbcEUU2A (ORCPT ); Sat, 21 May 2016 16:28:00 -0400 Received: from mail-wm0-f66.google.com ([74.125.82.66]:34791 "EHLO mail-wm0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751489AbcEUU17 (ORCPT ); Sat, 21 May 2016 16:27:59 -0400 Date: Sat, 21 May 2016 22:27:52 +0200 From: Ingo Molnar To: Andy Lutomirski Cc: Dmitry Safonov , "linux-kernel@vger.kernel.org" , Ingo Molnar , Thomas Gleixner , "H. Peter Anvin" , X86 ML , Andrew Morton , "linux-mm@kvack.org" , Dmitry Safonov <0x7f454c46@gmail.com>, Shuah Khan , linux-kselftest@vger.kernel.org Subject: Re: [PATCHv9 2/2] selftest/x86: add mremap vdso test Message-ID: <20160521202752.GA31710@gmail.com> References: <1463487232-4377-1-git-send-email-dsafonov@virtuozzo.com> <1463487232-4377-3-git-send-email-dsafonov@virtuozzo.com> <20160520064820.GB29418@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Andy Lutomirski wrote: > On Thu, May 19, 2016 at 11:48 PM, Ingo Molnar wrote: > > > > * Dmitry Safonov wrote: > > > >> Should print on success: > >> [root@localhost ~]# ./test_mremap_vdso_32 > >> AT_SYSINFO_EHDR is 0xf773f000 > >> [NOTE] Moving vDSO: [f773f000, f7740000] -> [a000000, a001000] > >> [OK] > >> Or segfault if landing was bad (before patches): > >> [root@localhost ~]# ./test_mremap_vdso_32 > >> AT_SYSINFO_EHDR is 0xf774f000 > >> [NOTE] Moving vDSO: [f774f000, f7750000] -> [a000000, a001000] > >> Segmentation fault (core dumped) > > > > So I still think that generating potential segfaults is not a proper way to test a > > new feature. How are we supposed to tell the feature still works? I realize that > > glibc is a problem here - but that doesn't really change the QA equation: we are > > adding new kernel code to help essentially a single application out of tens of > > thousands of applications. > > > > At minimum we should have a robust testcase ... > > I think it's robust enough. It will print "[OK]" and exit with 0 on > success and it will crash on failure. The latter should cause make > run_tests to fail reliably. Indeed, you are right - I somehow mis-read it as potentially segfaulting on fixed kernels as well... Will look at applying this after the merge window. Thanks, Ingo