search for: fallocate64

Displaying 15 results from an estimated 15 matches for "fallocate64".

Did you mean: fallocate
2010 Oct 22
2
fallocate and glibc 2.10
In glibc 2.10 (32 bit) fallocate() exists but fallocate64() doesn't. When _FILE_OFFSET_BITS==64, fallocate() is a redirect to fallocate64() and the program can't be linked (fails to find symbol fallocate64). See http://bugzilla.redhat.com/500487 Attached patch detects fallocate() more robustly to guard against this problem. Cheers, Paul. -------...
2010 Dec 18
1
undefined reference to fallocate64
Hi While compiling dovecot 2.0.8 on Ubuntu 9.10 I get the following error at make: ../../src/lib-dovecot/.libs/libdovecot.so: undefined reference to `fallocate64' Any idea how to resolve this? Thanks, Mike
2011 Jan 08
1
Unable to build dovecot 2.0.8 on Ubuntu Server 9.10
...-Wstrict-aliasing=2 -o .libs/anvil main.o anvil-connection.o anvil-settings.o connect-limit.o penalty.o -Wl,--export-dynamic ../../src/lib-dovecot/.libs/libdovecot.so -ldl -lrt -Wl,-rpath -Wl,/applications/dovecot-mail/lib/dovecot ../../src/lib-dovecot/.libs/libdovecot.so: undefined reference to `fallocate64' collect2: ld returned 1 exit status make[3]: *** [anvil] Error 1 make[3]: Leaving directory `/root/build/source/dovecot-2.0.8/src/anvil' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/root/build/source/dovecot-2.0.8/src' make[1]: *** [all-recursive] Error 1 make[1]:...
2012 May 29
4
per-mailbox message limits
...%{?prerel:.%{prerel}}.cf.MSSL.%{__distinit}%{__distvers} %global sieve_epoch 3 %global sieve_version 0.3.0 %global sieve_release 6.1.cf.%{__distinit}%{__distvers} @@ -134,6 +134,7 @@ Patch502: dovecot-2.0-mysqlconfig.patch Patch503: dovecot-2.1-pigeonhole-bzip2.patch Patch504: dovecot-2.1.rc6-fallocate64.patch +Patch505: ../../dovecot-mssl-2.1.6.mail-storage.c.DIFF BuildRequires: gcc-c++ BuildRequires: openssl-devel, pam-devel, zlib-devel, bzip2-devel BuildRequires: openldap-devel, krb5-devel >= 1.3 @@ -282,6 +283,11 @@ # http://bugzilla.redhat.com/500487 %patch504 -p1 + +# add mssl maild...
2010 Aug 28
4
[PATCH 0/4] Add progress bars
As discussed previously: https://www.redhat.com/archives/libguestfs/2010-July/msg00003.html https://www.redhat.com/archives/libguestfs/2010-July/msg00024.html To do: (1) Implement progress notifications for many more daemon operations. (2) OCaml bindings to the callback. (3) Perl bindings to the callback. Rich. -- Richard Jones, Virtualization Group, Red Hat
2010 Jul 08
0
[ANNOUNCE] libguestfs 1.4.0 - tools for accessing and modifying disk images and virtual machines
...al groups - base64-in - upload base64-encoded data to file - base64-out - download file and encode as base64 - checksum-device - compute checksums on the contents of a device - checksums-out - compute checksums of multiple files in a directory - debug-upload - upload a file to the appliance - fallocate64 - preallocate a file in the guest filesystem - fill-pattern - fill a file with a repeating pattern of bytes - get-umask - get the current umask - lvresize-free - expand an LV to fill free space - ntfsresize - resize an NTFS filesystem - ntfsresize-size - resize an NTFS filesystem (with size)...
2017 Mar 03
2
[PATCH] generator: Allow actions to be deprecated with no replacement.
...[["zfgrepi"; "abc"; "/test-grep.txt.gz"]], @@ -547,7 +547,7 @@ matching lines." }; { defaults with name = "fallocate"; added = (1, 0, 66); style = RErr, [Pathname "path"; Int "len"], []; - deprecated_by = Some "fallocate64"; + deprecated_by = Replaced_by "fallocate64"; tests = [ InitScratchFS, Always, TestResult ( [["fallocate"; "/fallocate"; "1000000"]; @@ -567,7 +567,7 @@ attaches it as a device." }; name = "setcon"; added = (1...
2017 Feb 21
1
[PATCH] generator: Put all the daemon procedure numbers (proc_nr)
This is a follow-up to the other generator changes in: https://www.redhat.com/archives/libguestfs/2017-February/msg00217.html Rich.
2012 Dec 21
0
Wine release 1.5.20
...TTPlayer6: window can't get focus 32299 LMS Virtual Lab: Unimplemented function atl100.dll.AtlUpdateRegistryFromResourceD 32350 Heroes of Might and Magic V crashes when loading a saved game (without native msvcr71) 32369 dlls/ntdll/file.c fails to link with older glibc due to missing fallocate64() 32376 World of Dragons wants msvcr90.dll._sprintf_p 32387 Repair/Remove no longer available. 32394 WinUAE GUI does not resize when its window size increases 32399 installer of PPTV needs unimplemented atl100.dll.AtlModuleAddTermFunc 32405 Children of the Nile (& Demo): mouse bu...
2012 Jan 12
1
Libguestfs gobject bindings
I'm currently working on gobject bindings for libguestfs. I haven't got as far as compiling anything yet, but I've attached the C header for initial review. Matt -- Matthew Booth, RHCA, RHCSS Red Hat Engineering, Virtualisation Team GPG ID: D33C3490 GPG FPR: 3733 612D 2D05 5458 8A8A 1600 3441 EA19 D33C 3490 -------------- next part -------------- An embedded and
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...;path"; Int64 "size"], []; + style = RErr, [String (Pathname, "path"); Int64 "size"], []; tests = [ InitScratchFS, Always, TestResult ( [["touch"; "/truncate_size"]; @@ -4921,7 +4921,7 @@ file of zeroes, use C<guestfs_fallocate64> instead." }; { defaults with name = "utimens"; added = (1, 0, 77); - style = RErr, [Pathname "path"; Int64 "atsecs"; Int64 "atnsecs"; Int64 "mtsecs"; Int64 "mtnsecs"], []; + style = RErr, [String (Pathname, "p...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.
2013 Jan 07
4
3.6.10 file handle leak under ancient 32-bit kernel
...for sysconf... yes checking for stat64... yes checking for fstat64... yes checking for lstat64... yes checking for fopen64... yes checking for atexit... yes checking for grantpt... yes checking for lseek64... yes checking for ftruncate64... yes checking for posix_fallocate... yes checking for posix_fallocate64... yes checking for fallocate... no checking for fallocate64... no checking for fseeko... yes checking for fseek64... no checking for fseeko64... yes checking for ftell64... no checking for ftello64... yes checking for setluid... no checking for getpwanam... no checking for opendir64... no checking...
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of local disk. Rich.