From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from colo.lackof.org (colo.lackof.org [198.49.126.79]) by dsl2.external.hp.com (Postfix) with ESMTP id 2CB4F4843 for ; Fri, 16 Jan 2004 22:58:52 -0700 (MST) Received: from localhost (localhost [127.0.0.1]) by colo.lackof.org (Postfix) with ESMTP id 6F51D29804D for ; Fri, 16 Jan 2004 22:58:51 -0700 (MST) Received: from colo.lackof.org ([127.0.0.1]) by localhost (colo [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28479-01 for ; Fri, 16 Jan 2004 22:58:50 -0700 (MST) Date: Fri, 16 Jan 2004 22:58:50 -0700 From: Grant Grundler To: parisc-linux@lists.parisc-linux.org Message-ID: <20040117055850.GA28550@colo.lackof.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: [parisc-linux] explicitly allocate executable pages? List-Id: parisc-linux developers list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Could someone explain the following code in arch/parisc/mm/init.c? The #warning doesn't make sense to me since it's inside !defined() for the thing it's talking about. thanks, grant ... #if !defined(CONFIG_STI_CONSOLE) #warning STI console should explicitly allocate executable pages but does not /* * Map the fault vector writable so we can * write the HPMC checksum. */ if (address >= ro_start && address < ro_end && address != fv_addr && address != gw_addr) pte = __mk_pte(address, PAGE_KERNEL_RO); else #endif ...