1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-02 01:18:26 +03:00

Use 64-bit file functions.

This commit is contained in:
Alasdair Kergon 2004-04-16 18:43:29 +00:00
parent 01c6121ba5
commit 96185e9ca1
5 changed files with 7 additions and 7 deletions

View File

@ -1 +1 @@
2.00.13-cvs (2004-04-16)
2.00.14-cvs (2004-04-16)

View File

@ -1,3 +1,7 @@
Version 2.00.14 - 16 Apr 2004
=============================
Use 64-bit file functions by default.
Version 2.00.13 - 16 Apr 2004
=============================
Set devices/md_component_detection = 1 to ignore devices containing md

View File

@ -51,12 +51,6 @@
# endif
#endif
/* FIXME Use _llseek for 64-bit
_syscall5(int, _llseek, uint, fd, ulong, hi, ulong, lo, loff_t *, res, uint, wh);
if (_llseek((unsigned) fd, (ulong) (offset >> 32), (ulong) (offset & 0xFFFFFFFF), &pos, SEEK_SET) < 0) {
*/
static LIST_INIT(_open_devices);
/*-----------------------------------------------------------------

View File

@ -21,6 +21,7 @@
#define _REENTRANT
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
#include "log.h"
#include "dbg_malloc.h"

View File

@ -17,6 +17,7 @@
#define _LVM_TOOLS_H
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
#include <assert.h>