From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756741Ab0EQXaR (ORCPT ); Mon, 17 May 2010 19:30:17 -0400 Received: from xenotime.net ([72.52.115.56]:56922 "HELO xenotime.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1756226Ab0EQX3K (ORCPT ); Mon, 17 May 2010 19:29:10 -0400 Date: Mon, 17 May 2010 16:21:11 -0700 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Carlo Marcelo Arenas Belon Subject: [PATCH 6/10] Documentation/vm: use better value for MAP_HUGETLB Message-ID: <1274138471652@xenotime.net> In-Reply-To: <12741384711166@xenotime.net> X-Mailer: gregkh_patchbomb Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Carlo Marcelo Arenas Belon documentation: slightly more correct value for MAP_HUGETLB in map_hugetlb.c still not correct for alpha, mips, parisc or xtensa but working out of the box in the most common architectures without having to deal with complicated macros or including architecture specific headers. Signed-off-by: Carlo Marcelo Arenas Belon Signed-off-by: Randy Dunlap --- Documentation/vm/map_hugetlb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- lnx-2634-docs.orig/Documentation/vm/map_hugetlb.c +++ lnx-2634-docs/Documentation/vm/map_hugetlb.c @@ -19,7 +19,7 @@ #define PROTECTION (PROT_READ | PROT_WRITE) #ifndef MAP_HUGETLB -#define MAP_HUGETLB 0x40 +#define MAP_HUGETLB 0x40000 /* arch specific */ #endif /* Only ia64 requires this */ --