svn commit: samba r8491 - in branches/SAMBA_4_0/source/torture/raw: .

tridge at samba.org tridge at samba.org
Fri Jul 15 11:32:09 GMT 2005


Author: tridge
Date: 2005-07-15 11:32:08 +0000 (Fri, 15 Jul 2005)
New Revision: 8491

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8491

Log:
lower the offset limit that filesystems need to support to pass RAW-WRITE to 2^33

Modified:
   branches/SAMBA_4_0/source/torture/raw/write.c


Changeset:
Modified: branches/SAMBA_4_0/source/torture/raw/write.c
===================================================================
--- branches/SAMBA_4_0/source/torture/raw/write.c	2005-07-15 11:27:32 UTC (rev 8490)
+++ branches/SAMBA_4_0/source/torture/raw/write.c	2005-07-15 11:32:08 UTC (rev 8491)
@@ -355,7 +355,7 @@
 		io.writex.in.offset = ((uint64_t)1) << i;
 		io.writex.in.data = buf;
 		status = smb_raw_write(cli->tree, &io);
-		if (i>40 &&
+		if (i>33 &&
 		    NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER)) {
 			break;
 		}



More information about the samba-cvs mailing list