similar to: aio for FreeBSD ?

Displaying 20 results from an estimated 2000 matches similar to: "aio for FreeBSD ?"

2005 Jan 11
4
sharing Outlook Contacts & Calendar
Dear Sirs, what can You advice on sharing MS Outlook Conatacs & Calendar for samba domain ? (I did some investigation on this subject, but I didn't find any beautiful solution at all) Cheers, Ilia Chipitsine
2018 Mar 02
1
[nbdkit PATCH] tests: Make parallel tests work at 512-byte granularity
qemu-io 2.12 will be changing its default alignment to unknown servers so that it does read-modify-write for anything less than 512 bytes. If we implement NBD_OPT_GO, then we can keep qemu-io using 1-byte alignment; but until then, this breaks our parallel tests when using 1-byte alignment because they end up with more delays than expected (thanks to the read-modify-write). Revamp the tests to
2002 Feb 24
2
patch for samba-2.2.3a
Dear Sirs, I've attached a patch, which fixes the problem of compiling pam_smbpass. Where do you usually submit patches ? Regards, (????????? ?????????) Ilia Chipitsine (???? ???????) -------------- next part -------------- *** Makefile.in.orig Mon Feb 25 10:17:32 2002 --- Makefile.in Mon Feb 25 10:17:56 2002 *************** *** 364,367 **** --- 364,368 ---- lib/util_sock.o lib/smbrun.o
2004 Dec 19
3
how to check out samba-docs from SVN ?
Dear Sirs, I cannot find how to check out samba-docs according to docs/README-NOW: ATTENTION DOCS TREE REMOVED --------------------------------------------------- This docs tree has been moved to a separate SVN module on svn.samba.org name 'samba-docs'. See http://svnanon.samba.org/ for details on accessing Samba svn trees. Cheers, Ilia Chipitsine
2004 Jul 30
6
2 Server's over VPN
Hi, I'm installing a VPN bridge. So the localareas are on the same IP class and we have broadcast And i want on both ends to have a Samba Server what do you recomend??? I'm Using mobile profiles so its better on each end we have its on profile
2002 Mar 05
2
sync between passwd and smbpasswd
Dear Sirs, is there a tool which performs check between /etc/passwd and PREFIX/private/smbpasswd ? (I mean different UID when username is the same, missing entries, duplicate entries, etc....) Regards, Ilia Chipitsine
1999 Oct 10
2
cyrillic letters in filenames.
-----BEGIN PGP SIGNED MESSAGE----- Dear All, Does anybody know why ? I can create files (and directories) with cyrillic names, but 1. I cannot delete those files (well, I can edit them and so) 2. I cannot "cd" to those directories. What I have: RH-5.X & Samba-2.X (BTW, I' sending this letter from different account. I'm subscribed to the another address. If this letter
2004 Oct 20
1
LDAP weirdness
Dear Sirs, I installed OpenLDAP and smbldap-tools by IDEALX. samba is 3.0.7, smbldap is 0.8.5 what else did I do: 1) smbldap-populate 2) pdbedit -i smbpasswd:/usr/local/private/smbpasswd -e ldapsam:ldap://127.0.0.1 3) smbpasswd -w <clear text password> what is not very clear, should I use the same Manager account or not. however, account information was exported to LDAP
2005 May 31
1
Illegal multibyte character ...
Dear Sirs, I'm running samba in utf-8/utf-8 mode (unix charset/display charset), clients are: Windows XP/RUS, files and directories are created by clients directly, so samba says: [2005/05/30 20:12:01, 3] smbd/open.c:open_file(178) Error opening file profile/?????????\x87???? ?\x81?\x82????12 (Is a directory) (local_flags=1) (flags=1) [2005/05/30 20:12:01, 3]
2004 Sep 16
1
how to submit patches ? (patch for pdb_xml.c included)
Dear Sirs, I wrote a patch for pdbedit (pdb_xml.c) which handles cases with national alphabet characters in GECOS fields. I sent it directly to Jelmer Vernooij, but there was no answer. Who can review the supplied patch ? Cheers, Ilia Chipitsine -------------- next part -------------- --- pdb_xml.c.orig Tue Aug 31 12:12:02 2004 +++ pdb_xml.c Tue Aug 31 12:12:07 2004 @@ -373,6 +373,7 @@
2005 May 30
1
read-only folders and files
Dear Sirs, How does samba handle "read only" attribute ? I can map archive and hidden files using smb.conf, but there's nothing on mapping read-only files. files/folders are created 770 (user and group writeable), but Windows shows those files as read-only. Cheers, Ilia Chipitsine
2018 Jan 27
0
[PATCH nbdkit] tests: Remove QEMU_IO / HAVE_QEMU_IO.
This is for consistency with qemu-img, socat, ss, etc where we test for these binaries at run time. --- configure.ac | 4 ---- tests/Makefile.am | 8 +++----- tests/test-parallel-file.sh | 21 +++++++++++++-------- tests/test-parallel-nbd.sh | 21 +++++++++++++-------- 4 files changed, 29 insertions(+), 25 deletions(-) diff --git a/configure.ac b/configure.ac index
2020 Mar 17
0
[nbdkit PATCH 3/4] tests: Don't let test-parallel-* hang on nbdkit bug
If nbdkit has a bug (such as the nbd-standalone bug fixed in the previous commit), qemu-io ends up waiting forever rather than realizing that if the server disappears unexpectedly then qemu-io should quit. So add timeouts so the testsuite will flag the problem instead of hang (tested by reordering this commit before the previous). It's trickier than I expected: from the command line,
2017 Nov 22
3
[nbdkit PATCH 0/2] more nbd tweaks
I tried reproducing the testsuite failure on test-parallel-*.sh using the same machine Rich posted a log from, but did not quickly hit it on a loop of make -j20 check TESTS=test-parallel-{file,nbd}.sh But I still think this series can't hurt. Eric Blake (2): nbd: Don't advertise writes if nbdkit is readonly tests: Make parallel tests more robust plugins/nbd/nbd.c | 2 ++
2013 Jul 31
29
[PATCH 0/9] tools: remove or disable old/useless/unused/unmainted stuff
depends on "autoconf: regenerate configure scripts with 4.4 version" This series removes some of the really old deadwood from the tools build and makes some other things which are on their way out configurable at build time with a default depending on how far down the slope I judge them to be. * nuke in tree copy of libaio * nuke obsolete tools: xsview, miniterm, lomount & sv *
2018 Jan 27
3
[PATCH nbdkit] tests: Remove QEMU_IO / HAVE_QEMU_IO.
Currently we test for qemu-img, socat, ss, certtool, etc at run time, but we test for qemu-io at compile time (in ./configure). This commit removes this inconsistency. I would consider the opposite patch (which makes qemu-img etc tested at configure time). The main advantage of testing for these binaries at run time is that tests are not "silently" omitted. Instead tests with
2018 Mar 06
0
[PATCH nbdkit 1/2] tests: Remove QEMU_IO / HAVE_QEMU_IO.
This is for consistency with qemu-img, socat, ss, etc where we test for these binaries at run time. --- configure.ac | 4 ---- tests/Makefile.am | 8 +++----- tests/test-parallel-file.sh | 20 +++++++++++++------- tests/test-parallel-nbd.sh | 20 +++++++++++++------- 4 files changed, 29 insertions(+), 23 deletions(-) diff --git a/configure.ac b/configure.ac index
2020 Mar 17
9
[nbdkit PATCH 0/4] Fix testsuite hang with nbd-stadalone
Either patch 1 or patch 2 in isolation is sufficient to fix the problem that Rich forwarded on from an archlinux tester (name so I can credit them?). But both patches should be applied, as well as backported to appropriate stable branches, to maximize cross-version interoperability of nbdkit vs. plugins. Patch 3 will let us detect future similar bugs much faster. I want patch 4 to ensure that
2018 Mar 06
4
[PATCH nbdkit 0/2] tests: Minor reworking of tests.
Small reworking of tests to remove $QEMU_IO, making that consistent with other test tools, and to test IPv6 connections.
2013 Jan 09
0
[PATCH V5 19/30] ocfs2: add support for read_iter, write_iter, and direct_IO_bvec
From: Zach Brown <zab@zabbo.net> ocfs2''s .aio_read and .aio_write methods are changed to take iov_iter and pass it to generic functions. Wrappers are made to pack the iovecs into iters and call these new functions. Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com> Cc: Zach Brown <zab@zabbo.net> Cc: Mark Fasheh <mfasheh@suse.com> Cc: Joel Becker