summaryrefslogtreecommitdiff
path: root/source4/torture/raw/openbench.c
AgeCommit message (Collapse)AuthorFilesLines
2011-11-30s4:libcli/raw: implement on top of smbXcli_conn/reqStefan Metzmacher1-7/+18
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Wed Nov 30 15:13:36 CET 2011 on sn-devel-104
2011-08-13torture: use tevent_ functions names instead of the legacy event_ onesSimo Sorce1-7/+7
2011-03-19source4/torture/raw: Fix prototypes for all functions.Jelmer Vernooij1-0/+1
2010-07-16s4-loadparm: 2nd half of lp_ to lpcfg_ conversionAndrew Tridgell1-6/+6
this converts all callers that use the Samba4 loadparm lp_ calling convention to use the lpcfg_ prefix. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2010-02-04s4-torture: handle NT_STATUS_CONNECTION_RESETAndrew Tridgell1-3/+6
a CONNECTION_RESET is now the normal "client disconnect" status code
2009-10-15s4-smb: declare root_fid as a file handleAndrew Tridgell1-1/+1
In order to implement root_fid in the s4 SMB server we need to declare it as a handle type, just as for other fnum values in SMB. This required some extensive (but simple) changes in many bits of code.
2009-02-02s4:libcliraw: s/private/private_dataStefan Metzmacher1-7/+7
metze
2008-12-29s4:lib/tevent: rename structsStefan Metzmacher1-6/+6
list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
2008-11-02Remove another use of global_loadparm.Jelmer Vernooij1-0/+1
Eventually, we should move some of these parameters into a separate struct (perhaps into smb_transport_options?), to avoid the long lists of parameters.
2008-11-02Fix the build.Jelmer Vernooij1-1/+0
2008-11-02Remove another use of global_loadparm.Jelmer Vernooij1-0/+2
2008-09-30Pass session options around; saves another use of global_loadparm.Jelmer Vernooij1-0/+1
2008-04-17Fix the build.Jelmer Vernooij1-2/+2
(This used to be commit 40b7b0e503cff31ea4e3d4822f2263fbeb76c57a)
2008-04-17Use provided event context rather than looking for it.Jelmer Vernooij1-3/+2
(This used to be commit fd0bb96acea3d7949cf0574bb6f3568a90f67f4e)
2008-04-02Install public header files again and include required prototypes.Jelmer Vernooij1-0/+1
(This used to be commit 47ffbbf67435904754469544390b67d34c958343)
2008-03-17RAW-BENCH-OPEN: avoid sync calls before the main loopStefan Metzmacher1-33/+55
On multi cpu machines the server may reply to the first requests while the test is still in setup mode. Now we setup the first opens, but send them all together when entering the main loop. metze (This used to be commit 3f2d12c61e95475009baf77c3e0fbea2abecc17a)
2008-03-17RAW-BENCH-OPEN: fix the output and calculate the total operationsStefan Metzmacher1-7/+17
metze (This used to be commit c84e3abae9781c0cbea5fee00bafe70967fb6468)
2008-01-03r26654: libcli/smb_composite: Rather than specifying each of the gazillion ↵Jelmer Vernooij1-7/+1
options for SMB individually, just specify the smbcli_options struct. (This used to be commit 8a97886e24a4b969aa91409c06f423b71a45f6eb)
2008-01-03r26651: libsmb: Allow specifying signing policy from higher up.Jelmer Vernooij1-0/+1
The number of arguments is getting a bit excessive now, so it probably makes sense to pass in the smbcli_options struct rather than all members individually and add a convenience function for obtaining a smbcli_options struct from a loadparm context. (This used to be commit 9f64213463b5bf3bcbf36913139e9a5042e967a2)
2008-01-03r26650: torture/raw: Fix warnings in lockbench/openbench.Jelmer Vernooij1-3/+7
I'm surprised this didn't cause any breakages. We should probably run (a subset of) RAW-LOCKBENCH + RAW-OPENBENCH in make test to make sure they don't regress. (This used to be commit 9bea9c0c4f62dabaaad4c56e7e55da96571b1e1d)
2008-01-02r26646: libcli/smb_composite: Allow specifying SMB parameters in ↵Jelmer Vernooij1-0/+6
smb_composite_connect structure. AFAIK no global variables will now be used when doing RPC client connections. (This used to be commit 0ef75e4e3cb0e1bd10e367a00f5e9b725587c40a)
2008-01-02r26644: Janitorial: Pass resolve_context explicitly to various SMB ↵Jelmer Vernooij1-1/+4
functions, should help fix the build for OpenChange. (This used to be commit 385ffe4f4cc9a21a760c0f00410f56e2592fd507)
2007-12-21r26409: Pass smb ports along.Jelmer Vernooij1-1/+1
(This used to be commit 2833f320de1f1fd39c710ad0a61c3fa1bb1df31f)
2007-12-21r26250: Avoid global_loadparm in a couple more places.Jelmer Vernooij1-1/+1
(This used to be commit 2c6b755309fdf685cd0b0564272bf83038574a43)
2007-12-21r26249: Remove a couple more uses of global_loadparm.Jelmer Vernooij1-2/+4
(This used to be commit 80a61200508a00d5b16a3e748ce92d54b9fefcd2)
2007-10-10r25554: Convert last instances of BOOL, True and False to the standard types.Jelmer Vernooij1-6/+6
(This used to be commit 566aa14139510788548a874e9213d91317f83ca9)
2007-10-10r25398: Parse loadparm context to all lp_*() functions.Jelmer Vernooij1-1/+1
(This used to be commit 3fcc960839c6e5ca4de2c3c042f12f369ac5f238)
2007-10-10r25026: Move param/param.h out of includes.hJelmer Vernooij1-0/+1
(This used to be commit abe8349f9b4387961ff3665d8c589d61cd2edf31)
2007-10-10r24728: Use more stock torture functions.Jelmer Vernooij1-1/+1
(This used to be commit da3a7ee407a2b41bd01f45072cad12bf29250b33)
2007-10-10r24588: use the right typeAndrew Tridgell1-1/+1
(This used to be commit 710f6dc17f4bdf994a5fefd439eee93e1774e70e)
2007-10-10r24587: the elements of the array are not talloc pointersAndrew Tridgell1-2/+1
(This used to be commit 2ebf00dc42edfc3474dc88ef2e560d4b1b534efa)
2007-10-10r24586: same bug in RAW-BENCH-OPENAndrew Tridgell1-1/+1
(This used to be commit 3bd35bb8abf2e49036d0356ce1b5db95908f7189)
2007-10-10r23792: convert Samba4 to GPLv3Andrew Tridgell1-3/+2
There are still a few tidyups of old FSF addresses to come (in both s3 and s4). More commits soon. (This used to be commit fcf38a38ac691abd0fa51b89dc951a08e89fdafa)
2007-10-10r23182: fixed valgrind errorAndrew Tridgell1-0/+2
(This used to be commit fae416cbe8e44bc88ea709160a583e2f921e4eec)
2007-10-10r23181: prevent attempts to reopen the connection twice at the same timeAndrew Tridgell1-12/+17
(This used to be commit a25c27dbae4534f2125001c16ac9ae0b67c519cb)
2007-10-10r23180: auto-reconnect on both NT_STATUS_END_OF_FILE and ↵Andrew Tridgell1-1/+2
NT_STATUS_LOCAL_DISCONNECT (This used to be commit 32a6c268a7963382dc05f53783ac22f7fd0de429)
2007-10-10r23152: fixed some async retry issues in openbenchAndrew Tridgell1-37/+34
(This used to be commit 08eeaff0799051c3046a1101943b74d634828f6e)
2007-10-10r23143: error found by valgrindAndrew Tridgell1-4/+5
(This used to be commit 268a26131ee43a673e7b79a359b2575dcef554d5)
2007-10-10r23142: added error checking and reconnect on echo repliesAndrew Tridgell1-4/+25
(This used to be commit 0d47efe6d6d1738183c59942a077faaf1c77f004)
2007-10-10r23140: send send echos while disconnectedAndrew Tridgell1-1/+3
(This used to be commit 233172a9f71e297e255c393946ad51fad96b356e)
2007-10-10r23139: use echo operations once a second in lockbench and openbench to ensureAndrew Tridgell1-0/+11
we detect IP takeover on servers (This used to be commit b5292a25edf1c071dea19877fb6b31f2501132ef)
2007-10-10r23062: make sure one node doesn't get ahead of the others at the startAndrew Tridgell1-2/+4
(This used to be commit 6ab736f5308aabec609408cef9e4c3629081dd75)
2007-10-10r23061: keep the RAW-BENCH-OPEN test balancedAndrew Tridgell1-19/+34
(This used to be commit 453d6f5c58ef60599894749a513d45f1bf5f1c4e)
2007-10-10r23056: added automatic reconnect to RAW-BENCH-OPEN, similar to RAW-BENCH-LOCKAndrew Tridgell1-28/+163
(This used to be commit 30b1733d75a5f309441818be9718c0434b984f42)
2007-10-10r22835: it's useful to see how much time is remaining in this test (so we canAndrew Tridgell1-3/+4
tell if failures are due to the cleanup code) (This used to be commit a4ff1927d452dce93403c456ea9ba3a6b4332f5c)
2007-10-10r22579: disable progress printing in the build-farmStefan Metzmacher1-3/+5
metze (This used to be commit 93089ad5e8b6e20c4fa92bf13b0137765aeac689)
2007-10-10r22087: added a RAW-BENCH-OPEN test that can be used to stress out a clusteredAndrew Tridgell1-0/+248
implementation of a opendb backend. Use it in combination with --unclist to tell smbtorture to connect to multiple nodes in the cluster (This used to be commit b4e38b1b8dbc3ce817f858f39c3f0521c9832fce)