summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2002-05-26 21:59:24 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2002-05-26 21:59:24 -0700
commit856e7226d848eb2ae64e584efe392943c9a63261 (patch)
tree4604b2a305baa562c03e350910c55e03124334ca /include
parent4478f0402bf68186e8af4872aa736eef78e0303a (diff)
[PATCH] autofs_wqt_t for ppc64
Anton Blanchard <anton@samba.org>: Fix autofs on ppc64: Define autofs_wqt_t to be an int on ppc64, just like the other mixed 32/64 bit archs do.
Diffstat (limited to 'include')
-rw-r--r--include/linux/auto_fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/auto_fs.h b/include/linux/auto_fs.h
index 443fc8b90427..9dc8ab2dfa6f 100644
--- a/include/linux/auto_fs.h
+++ b/include/linux/auto_fs.h
@@ -45,7 +45,7 @@
* If so, 32-bit user-space code should be backwards compatible.
*/
-#if defined(__sparc__) || defined(__mips__) || defined(__x86_64__)
+#if defined(__sparc__) || defined(__mips__) || defined(__x86_64__) || defined(__powerpc__)
typedef unsigned int autofs_wqt_t;
#else
typedef unsigned long autofs_wqt_t;