Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757112AbbH0WUr (ORCPT ); Thu, 27 Aug 2015 18:20:47 -0400 Received: from lists.s-osg.org ([54.187.51.154]:60606 "EHLO lists.s-osg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757090AbbH0WUp (ORCPT ); Thu, 27 Aug 2015 18:20:45 -0400 Subject: Re: [PATCH 6/7] selftests: only compile userfaultfd for x86 and powperpc To: Bamvor Jian Zhang , linux-kernel@vger.kernel.org References: <1439559818-21666-1-git-send-email-bamvor.zhangjian@linaro.org> <1439559818-21666-7-git-send-email-bamvor.zhangjian@linaro.org> Cc: broonie@linaro.org, khilman@linaro.org, tyler.baker@linaro.org, Shuah Khan , Andrew Morton From: Shuah Khan Organization: Samsung Open Source Group Message-ID: <55DF8D3C.7030200@osg.samsung.com> Date: Thu, 27 Aug 2015 16:20:44 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <1439559818-21666-7-git-send-email-bamvor.zhangjian@linaro.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1563 Lines: 55 On 08/14/2015 07:43 AM, Bamvor Jian Zhang wrote: > Signed-off-by: Bamvor Jian Zhang > --- > tools/testing/selftests/vm/Makefile | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/tools/testing/selftests/vm/Makefile b/tools/testing/selftests/vm/Makefile > index bb888c6..4dd6e4f 100644 > --- a/tools/testing/selftests/vm/Makefile > +++ b/tools/testing/selftests/vm/Makefile > @@ -1,5 +1,15 @@ > # Makefile for vm selftests > > +uname_M := $(shell uname -m 2>/dev/null || echo not) > +ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/ -e s/ppc.*/powerpc/) > + > +ifeq ($(ARCH),powerpc) > +support_userfaultfd = yes > +endif > +ifeq ($(ARCH),x86) > +support_userfaultfd = yes > +endif > + > CFLAGS = -Wall > BINARIES = compaction_test > BINARIES += hugepage-mmap > @@ -9,7 +19,9 @@ BINARIES += mlock2-tests > BINARIES += on-fault-limit > BINARIES += thuge-gen > BINARIES += transhuge-stress > +ifdef support_userfaultfd > BINARIES += userfaultfd > +endif > > all: $(BINARIES) > %: %.c > I will get this into 4.3-rc2 once the userfaultfd gets into 4.3-rc1. Thanks for the fix. thanks, -- Shuah -- Shuah Khan Sr. Linux Kernel Developer Open Source Innovation Group Samsung Research America (Silicon Valley) shuahkh@osg.samsung.com | (970) 217-8978 -- 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/