ChangeLog, llseek.c:
  llseek.c: Add #ifdef's for IA64 (it's a 64-bit platform, so we don't
  	need to use llseek).
ChangeLog, fsck.c:
  fsck.c (device_already_active): Add a special case check for MD
  	devices, so we don't try to check them in parallel with other devices.

diff --git a/lib/ext2fs/llseek.c b/lib/ext2fs/llseek.c
index 27348d9..17d3d08 100644
--- a/lib/ext2fs/llseek.c
+++ b/lib/ext2fs/llseek.c
@@ -45,11 +45,11 @@
 
 #else	/* ! HAVE_LLSEEK */
 
-#ifdef __alpha__
+#if defined(__alpha__) || defined (__ia64__)
 
 #define llseek lseek
 
-#else /* !__alpha__ */
+#else /* !__alpha__ && !__ia64__*/
 
 #include <linux/unistd.h>
 
@@ -81,7 +81,7 @@
 	return (retval == -1 ? (ext2_loff_t) retval : result);
 }
 
-#endif	/* __alpha__ */
+#endif	/* __alpha__ || __ia64__ */
 
 #endif /* HAVE_LLSEEK */