]> git.proxmox.com Git - grub2.git/commitdiff
Remove direct _llseek code and require long filesystem libc.
authorFelix Janda <felix.janda@posteo.de>
Thu, 22 Jan 2015 18:54:36 +0000 (19:54 +0100)
committerVladimir Serbinenko <phcoder@gmail.com>
Thu, 22 Jan 2015 18:54:36 +0000 (19:54 +0100)
ChangeLog
INSTALL
configure.ac
grub-core/osdep/unix/hostdisk.c

index 2d57d83fa1213080bdaa6f5bd0b86e91323fb05a..024a876dd4c6d4b32974beb9045bd7d9f0569738 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-22  Felix Janda <felix.janda@posteo.de>
+
+       Remove direct _llseek code and require long filesystem libc.
+
 2015-01-20  Vladimir Serbinenko  <phcoder@gmail.com>
 
        Remove potential division by 0 in gfxmenu.
diff --git a/INSTALL b/INSTALL
index b67cd7f3476998a4075dfc6287ee36160acd3857..f6f276c44f03f8dc234fabfa76d35e4d434031f1 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -35,6 +35,7 @@ configuring the GRUB.
 * GNU binutils 2.9.1.0.23 or later
 * Flex 2.5.35 or later
 * Other standard GNU/Unix tools
+* a libc with large file support (e.g. glibc 2.1 or later)
 
 On GNU/Linux, you also need:
 
index 31d2b0baf36b66732789e3ea390a98f6d3f0d28e..fdddbaddc085996474866f45074599646f1ee8f3 100644 (file)
@@ -366,6 +366,14 @@ case "$host_os" in
    ;;
 esac
 
+case "$host_os" in
+  cygwin | windows* | mingw32* | aros*)
+     ;;
+  *)
+     AC_CHECK_SIZEOF(off_t)
+     test x"$ac_cv_sizeof_off_t" = x8 || AC_MSG_ERROR([Large file support is required]);;
+esac
+
 if test x$USE_NLS = xno; then
   HOST_CFLAGS="$HOST_CFLAGS -fno-builtin-gettext"
 fi
index 43b56ff31e54d9a3db6a3504ae3dae11df47c425..b3bc0e425e9e112f82e76c78faa7c4c28e878edd 100644 (file)
 #ifdef __linux__
 # include <sys/ioctl.h>         /* ioctl */
 # include <sys/mount.h>
-# if !defined(__GLIBC__) || \
-        ((__GLIBC__ < 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ < 1)))
-/* Maybe libc doesn't have large file support.  */
-#  include <linux/unistd.h>     /* _llseek */
-# endif /* (GLIBC < 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR < 1)) */
 #endif /* __linux__ */
 
 grub_uint64_t
@@ -79,24 +74,6 @@ grub_util_get_fd_size (grub_util_fd_t fd, const char *name, unsigned *log_secsiz
   return st.st_size;
 }
 
-#if defined(__linux__) && (!defined(__GLIBC__) || \
-        ((__GLIBC__ < 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ < 1))))
-  /* Maybe libc doesn't have large file support.  */
-int
-grub_util_fd_seek (grub_util_fd_t fd, grub_uint64_t off)
-{
-  loff_t offset, result;
-  static int _llseek (uint filedes, ulong hi, ulong lo,
-                     loff_t *res, uint wh);
-  _syscall5 (int, _llseek, uint, filedes, ulong, hi, ulong, lo,
-            loff_t *, res, uint, wh);
-
-  offset = (loff_t) off;
-  if (_llseek (fd, offset >> 32, offset & 0xffffffff, &result, SEEK_SET))
-    return -1;
-  return GRUB_ERR_NONE;
-}
-#else
 int
 grub_util_fd_seek (grub_util_fd_t fd, grub_uint64_t off)
 {
@@ -107,7 +84,6 @@ grub_util_fd_seek (grub_util_fd_t fd, grub_uint64_t off)
 
   return 0;
 }
-#endif
 
 
 /* Read LEN bytes from FD in BUF. Return less than or equal to zero if an