From patchwork Thu Jan 31 20:01:10 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Helge Deller X-Patchwork-Id: 2075311 X-Patchwork-Delegate: deller@gmx.de Return-Path: X-Original-To: patchwork-linux-parisc@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id E4B263FD1A for ; Thu, 31 Jan 2013 20:01:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756914Ab3AaUBR (ORCPT ); Thu, 31 Jan 2013 15:01:17 -0500 Received: from mout.gmx.net ([212.227.17.21]:54006 "EHLO mout.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753928Ab3AaUBQ (ORCPT ); Thu, 31 Jan 2013 15:01:16 -0500 Received: from mailout-de.gmx.net ([10.1.76.2]) by mrigmx.server.lan (mrigmx001) with ESMTP (Nemesis) id 0M8cSj-1UvjmD1V9n-00wAnH for ; Thu, 31 Jan 2013 21:01:14 +0100 Received: (qmail invoked by alias); 31 Jan 2013 20:01:14 -0000 Received: from p54AD01F8.dip0.t-ipconnect.de (EHLO p100.box) [84.173.1.248] by mail.gmx.net (mp002) with SMTP; 31 Jan 2013 21:01:14 +0100 X-Authenticated: #1045983 X-Provags-ID: V01U2FsdGVkX1/6DllvcdL6PoKc8bKrvrg6C7DaFWDBxVZuTBG0Ny pDwtap0pCqiOvZ Date: Thu, 31 Jan 2013 21:01:10 +0100 From: Helge Deller To: linux-parisc@vger.kernel.org, James.Bottomley@HansenPartnership.com, linux-kernel@vger.kernel.org Subject: [PATCH] parisc: unbreak automounter support on 64-bit kernel with 32-bit userspace Message-ID: <20130131200110.GA6032@p100.box> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-Y-GMX-Trusted: 0 Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org Similiar to other 64 bit Linux targets autofs_wqt_t needs to be of type int which has a size of 32 bits on 32- and 64-bit parisc kernels. Signed-off-by: Helge Deller --- To unsubscribe from this list: send the line "unsubscribe linux-parisc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/include/uapi/linux/auto_fs.h b/include/uapi/linux/auto_fs.h index 77cdba9..d551754 100644 --- a/include/uapi/linux/auto_fs.h +++ b/include/uapi/linux/auto_fs.h @@ -43,7 +43,7 @@ */ #if defined(__sparc__) || defined(__mips__) || defined(__x86_64__) \ - || defined(__powerpc__) || defined(__s390__) + || defined(__powerpc__) || defined(__s390__) || defined(__hppa__) typedef unsigned int autofs_wqt_t; #else typedef unsigned long autofs_wqt_t;