Displaying 9 results from an estimated 9 matches for "chown32".
2008 Jun 22
2
v1.0.13: maildirfolder not being created
Hi,
I'm using version 1.0.13 of dovecot. I know it's somewhat dated, but
that's the latest that Debian etch offers, and I would like to avoid
compiling by myself if possible.
dovecot is not creating the 'maildirfolder' in folders that are
created via IMAP. Looking at the NEWS file, this was implemented in
v1.0.rc7, so my version should have that working already. Is
2013 Oct 09
1
[PATCH 0/1] Porting klibc to AArch64
...ving a clean start without
support for deprecated calls.
e.g. one part of the patch is:
-int _newselect,select::select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
+<!aarch64> int _newselect,select::select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
Others include: dup2, lchown32, chown32, stat64, lstat64, readlink, symlink, rmdir, mkdir, mknod ...
There was a talk at FOSDEM 2013 which covered these changes. There is
also documentation available from ARM, if you would like it.
http://people.linaro.org/~rikuvoipio/aarch64-talk/#/
http://people.linaro.org/~rikuvoipio/aarch...
2008 Feb 29
1
cram-md5 crashes passdb
...No such file or
directory)
umask(0117) = 077
socket(PF_UNIX, SOCK_STREAM, 0) = 13
bind(13, {sin_family=AF_UNIX, path="/var/run/dovecot/login/default"},
110) = 0
listen(13, 16) = 0
umask(077) = 0117
chown32(0x80691e8, 0, 0x5a) = 0
fcntl64(0xd, 0x3, 0, 0xb7fcfacc) = 2
fcntl64(0xd, 0x4, 0x802, 0xb7fcfacc) = 0
fcntl64(0xd, 0x1, 0, 0xb7fcfacc) = 0
fcntl64(0xd, 0x2, 0x1, 0xb7fcfacc) = 0
socketpair(PF_UNIX, SOCK_STREAM, 0, [14, 15]) = 0
pipe([16, 17])...
2013 Nov 08
0
[PATCH 2/3] syscalls: Add syscalls needed by arm64
...st char *, struct stat *);
@@ -141,14 +141,15 @@ int readlink(const char *, char *, size_t);
/* XXX: Is this right?! */
<?> int fstatat64,newfstatat,fstatat::fstatat(int, const char *, struct stat *, int);
int getdents64,getdents::getdents(unsigned int, struct dirent *, unsigned int);
-int chown32,chown::chown(const char *, uid_t, gid_t);
+<?> int chown32,chown::chown(const char *, uid_t, gid_t);
int fchown32,fchown::fchown(int, uid_t, gid_t);
<?> int fchownat(int, const char *, uid_t, gid_t, int);
-int lchown32,lchown::lchown(const char *, uid_t, gid_t);
+<?> int lchown3...
2013 Nov 12
0
[klibc:master] syscalls: Add syscalls needed by arm64
...st char *, struct stat *);
@@ -141,14 +141,15 @@ int readlink(const char *, char *, size_t);
/* XXX: Is this right?! */
<?> int fstatat64,newfstatat,fstatat::fstatat(int, const char *, struct stat *, int);
int getdents64,getdents::getdents(unsigned int, struct dirent *, unsigned int);
-int chown32,chown::chown(const char *, uid_t, gid_t);
+<?> int chown32,chown::chown(const char *, uid_t, gid_t);
int fchown32,fchown::fchown(int, uid_t, gid_t);
<?> int fchownat(int, const char *, uid_t, gid_t, int);
-int lchown32,lchown::lchown(const char *, uid_t, gid_t);
+<?> int lchown3...
2013 Oct 09
5
[PATCH 0/1] Porting klibc to AArch64
Hi All:
We have some patches to port klibc to ArmV8.
The first set of patches from Neil Williams fixes the build issues.
The second set of patches from Anil Singhar fixes functionalities.
The following files have changed in the second set of patches
------------------------------------------------------------------------------------------
usr/include/arch/aarch64/klibc/archconfig.h
2013 Nov 11
5
[PATCH V2 0/3] Introduce arm64 support
Hello,
Here is V2 of the arm64 support for klibc patch set.
Notable changes since the original series:
* fp regs dropped from setjmp/longjmp
* chmod, lstat and stat re-implemented with *at functions.
* open64 merged into open.
As with the original, this series is to be applied against the latest
klibc, just after
25a66fa README.klibc: update build information
V2 has been tested on x86_64
2009 Sep 07
1
high imap load on large folders
...= 0
lstat64("/mnt/mail/mail/ingoiwt/.wx-dev/dovecot-uidlist.lock",
{st_mode=S_IFREG|0600, st_size=26, ...}) = 0
umask(077) = 0177
stat64("/mnt/mail/mail/ingoiwt/.wx-dev", {st_mode=S_IFDIR|0700,
st_size=4096, ...}) = 0
chown32("/mnt/mail/mail/ingoiwt/.wx-dev", 20000, -1) = 0
open("/mnt/mail/mail/ingoiwt/.wx-dev/dovecot-uidlist",
O_RDONLY|O_LARGEFILE) = 10
close(10) = 0
stat64("/mnt/mail/mail/ingoiwt/.wx-dev/dovecot-uidlist",
{st_mode=S_IFREG|0600, st_size=2365...
2013 Nov 08
9
[PATCH 0/3] Introduce arm64 support
Hello,
This series introduces arm64 support to klibc.
I've rebased the work from Neil Williams and Anil Singhar into the
following three patches. Most of the code changes are due to new
syscall implementations being needed for arm64 as a only a minimal set
of syscalls are defined in the arm64 kernel.
This series is to be applied against the latest klibc, just after
25a66fa README.klibc: