From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kyle McMartin Subject: Re: [RFC][PATCH 13/35] parisc: create ptemap.h Date: Sat, 2 May 2009 10:29:39 -0400 Message-ID: <20090502142939.GD28342@bombadil.infradead.org> References: <20090501144201.D31EF417@kernel> <20090501144221.4C7F3D79@kernel> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from bombadil.infradead.org ([18.85.46.34]:43051 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756059AbZEBO3k (ORCPT ); Sat, 2 May 2009 10:29:40 -0400 Content-Disposition: inline In-Reply-To: <20090501144221.4C7F3D79@kernel> Sender: linux-arch-owner@vger.kernel.org List-ID: To: Dave Hansen Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org On Fri, May 01, 2009 at 07:42:21AM -0700, Dave Hansen wrote: > +#ifndef _PARISC_ASM_PTEMAP_H > +#define _PARISC_ASM_PTEMAP_H > + > +#define pte_offset_map(pmd, address) pte_offset_kernel(pmd, address) > +#define pte_offset_map_nested(pmd, address) pte_offset_kernel(pmd, address) > +#define pte_unmap(pte) do { } while (0) > +#define pte_unmap_nested(pte) do { } while (0) > + > +#define pte_unmap(pte) do { } while (0) > +#define pte_unmap_nested(pte) do { } while (0) > + > +#endif /* _PARISC_ASM_PTEMAP_H */ You have duplicate definitiosn of pte_unmap{,_nested}? cheers, Kyle