aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs/ext2fs
diff options
context:
space:
mode:
authorvapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-06-28 23:50:18 +0000
committervapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-06-28 23:50:18 +0000
commitc76b8c3e247ef5f0ce9ec99299792a90986eb920 (patch)
tree660202ab4c974731c650b4a633997ccda131eec9 /e2fsprogs/ext2fs
parent8bbe710b7e23ac570f0524fcd1f89a68cf52cf2d (diff)
downloadbusybox-w32-c76b8c3e247ef5f0ce9ec99299792a90986eb920.tar.gz
busybox-w32-c76b8c3e247ef5f0ce9ec99299792a90986eb920.tar.bz2
busybox-w32-c76b8c3e247ef5f0ce9ec99299792a90986eb920.zip
rip out all the non-linux code and ugly workarounds
git-svn-id: svn://busybox.net/trunk/busybox@10608 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'e2fsprogs/ext2fs')
-rw-r--r--e2fsprogs/ext2fs/llseek.c91
1 files changed, 6 insertions, 85 deletions
diff --git a/e2fsprogs/ext2fs/llseek.c b/e2fsprogs/ext2fs/llseek.c
index 502faa3dd..6bb84bf09 100644
--- a/e2fsprogs/ext2fs/llseek.c
+++ b/e2fsprogs/ext2fs/llseek.c
@@ -4,8 +4,8 @@
4 * Copyright (C) 1994, 1995, 1996, 1997 Theodore Ts'o. 4 * Copyright (C) 1994, 1995, 1996, 1997 Theodore Ts'o.
5 * 5 *
6 * %Begin-Header% 6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public 7 * This file may be redistributed under the terms of the
8 * License. 8 * GNU Lesser General Public License.
9 * %End-Header% 9 * %End-Header%
10 */ 10 */
11 11
@@ -19,69 +19,14 @@
19#if HAVE_UNISTD_H 19#if HAVE_UNISTD_H
20#include <unistd.h> 20#include <unistd.h>
21#endif 21#endif
22#ifdef __MSDOS__
23#include <io.h>
24#endif
25#include "ext2fs/ext2_io.h"
26
27#ifdef __linux__
28 22
29#if defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE) 23#include "ext2fs/ext2_io.h"
30
31#define my_llseek lseek64
32 24
25#ifdef CONFIG_LFS
26# define my_llseek lseek64
33#else 27#else
34#if defined(HAVE_LLSEEK) 28# define my_llseek lseek
35#include <syscall.h>
36
37#ifndef HAVE_LLSEEK_PROTOTYPE
38extern long long llseek (int fd, long long offset, int origin);
39#endif
40
41#define my_llseek llseek
42
43#else /* ! HAVE_LLSEEK */
44
45#if defined(__alpha__) || defined (__ia64__)
46
47#define llseek lseek
48
49#else /* !__alpha__ && !__ia64__*/
50
51#include <linux/unistd.h>
52
53#ifndef __NR__llseek
54#define __NR__llseek 140
55#endif
56
57#ifndef __i386__
58static int _llseek (unsigned int, unsigned long,
59 unsigned long, ext2_loff_t *, unsigned int);
60
61static _syscall5(int,_llseek,unsigned int,fd,unsigned long,offset_high,
62 unsigned long, offset_low,ext2_loff_t *,result,
63 unsigned int, origin)
64#endif
65
66static ext2_loff_t my_llseek (int fd, ext2_loff_t offset, int origin)
67{
68 ext2_loff_t result;
69 int retval;
70
71#ifndef __i386__
72 retval = _llseek(fd, ((unsigned long long) offset) >> 32,
73#else
74 retval = syscall(__NR__llseek, fd, (unsigned long long) (offset >> 32),
75#endif 29#endif
76 ((unsigned long long) offset) & 0xffffffff,
77 &result, origin);
78 return (retval == -1 ? (ext2_loff_t) retval : result);
79}
80
81#endif /* __alpha__ || __ia64__ */
82
83#endif /* HAVE_LLSEEK */
84#endif /* defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE) */
85 30
86ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin) 31ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin)
87{ 32{
@@ -108,27 +53,3 @@ ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin)
108 } 53 }
109 return result; 54 return result;
110} 55}
111
112#else /* !linux */
113
114#ifndef EINVAL
115#define EINVAL EXT2_ET_INVALID_ARGUMENT
116#endif
117
118ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin)
119{
120#if defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE)
121 return lseek64 (fd, offset, origin);
122#else
123 if ((sizeof(off_t) < sizeof(ext2_loff_t)) &&
124 (offset >= ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1)))) {
125 errno = EINVAL;
126 return -1;
127 }
128 return lseek (fd, (off_t) offset, origin);
129#endif
130}
131
132#endif /* linux */
133
134