[SCM] Samba Shared Repository - branch v3-2-test updated - initial-v3-2-test-2509-g1ba223f

Volker Lendecke vl at samba.org
Sat Feb 23 23:02:28 GMT 2008


The branch, v3-2-test has been updated
       via  1ba223f202a070a695581e0d7161473a3ebf4332 (commit)
      from  621db68f32f7007de8b2c4d7cf604a5778725615 (commit)

http://gitweb.samba.org/?samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit 1ba223f202a070a695581e0d7161473a3ebf4332
Author: Volker Lendecke <vl at samba.org>
Date:   Sun Feb 24 00:01:07 2008 +0100

    AIO on streams does not work (yet...)

-----------------------------------------------------------------------

Summary of changes:
 source/smbd/aio.c |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/smbd/aio.c b/source/smbd/aio.c
index 8c6eaf1..59dd9a9 100644
--- a/source/smbd/aio.c
+++ b/source/smbd/aio.c
@@ -202,6 +202,12 @@ bool schedule_aio_read_and_X(connection_struct *conn,
 	size_t bufsize;
 	size_t min_aio_read_size = lp_aio_read_size(SNUM(conn));
 
+	if (fsp->base_fsp != NULL) {
+		/* No AIO on streams yet */
+		DEBUG(10, ("AIO on streams not yet supported\n"));
+		return false;
+	}
+
 	if ((!min_aio_read_size || (smb_maxcnt < min_aio_read_size))
 	    && !SMB_VFS_AIO_FORCE(fsp)) {
 		/* Too small a read for aio request. */
@@ -285,6 +291,12 @@ bool schedule_aio_write_and_X(connection_struct *conn,
 	bool write_through = BITSETW(req->inbuf+smb_vwv7,0);
 	size_t min_aio_write_size = lp_aio_write_size(SNUM(conn));
 
+	if (fsp->base_fsp != NULL) {
+		/* No AIO on streams yet */
+		DEBUG(10, ("AIO on streams not yet supported\n"));
+		return false;
+	}
+
 	if ((!min_aio_write_size || (numtowrite < min_aio_write_size))
 	    && !SMB_VFS_AIO_FORCE(fsp)) {
 		/* Too small a write for aio request. */


-- 
Samba Shared Repository


More information about the samba-cvs mailing list