diff options
author | H. Peter Anvin <hpa@zytor.com> | 2004-01-15 01:48:37 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2004-01-15 01:48:37 +0000 |
commit | 5441e4a101e8dee1bcd5c2f72fa47bd74e0a2b6d (patch) | |
tree | 3b3105f270f71eeb74e64c593eb30c3f4ed3179e | |
parent | e454cafd575e13fbb80818737b9c63f73628e62a (diff) | |
download | autofs3-5441e4a101e8dee1bcd5c2f72fa47bd74e0a2b6d.tar.gz autofs3-5441e4a101e8dee1bcd5c2f72fa47bd74e0a2b6d.tar.xz autofs3-5441e4a101e8dee1bcd5c2f72fa47bd74e0a2b6d.zip |
Change policy w.r.t. the size of the autofs wait queue token
-rw-r--r-- | include/linux/auto_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/auto_fs.h b/include/linux/auto_fs.h index aaacb18..efb70b1 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__) +#if !defined(__alpha__) && !defined(__ia64__) typedef unsigned int autofs_wqt_t; #else typedef unsigned long autofs_wqt_t; |