stasis-aries-wal/test/stasis/check_io.c

554 lines
15 KiB
C
Raw Permalink Normal View History

/*--- This software is copyrighted by the Regents of the University
2007-10-22 20:48:12 +00:00
of
California, and other parties. The following terms apply to all files
associated with the software unless explicitly disclaimed in
individual files.
The authors hereby grant permission to use, copy, modify, distribute,
and license this software and its documentation for any purpose,
provided that existing copyright notices are retained in all copies
and that this notice is included verbatim in any distributions. No
written agreement, license, or royalty fee is required for any of the
authorized uses. Modifications to this software may be copyrighted by
their authors and need not follow the licensing terms described here,
provided that the new terms are clearly indicated on the first page of
each file where they apply.
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND
THE AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
GOVERNMENT USE: If you are acquiring this software on behalf of the
U.S. government, the Government shall have only "Restricted Rights" in
the software and related documentation as defined in the Federal
Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you are
acquiring the software on behalf of the Department of Defense, the
software shall be classified as "Commercial Computer Software" and the
Government shall have only "Restricted Rights" as defined in Clause
252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
authors grant the U.S. Government and others acting in its behalf
permission to use and distribute the software in accordance with the
terms specified in this license.
---*/
#include "../check_includes.h"
#include <stasis/io/handle.h>
#include <stasis/constants.h>
#include <stasis/flags.h>
#include <stasis/util/random.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#define LOG_NAME "check_io.log"
void handle_smoketest(stasis_handle_t * h) {
const int one = 0x11111111;
const int two = 0x22222222;
assert((!h->num_copies(h)) || (!h->num_copies_buffer(h)));
assert(! h->write(h, 0, (byte*)&one, sizeof(int)));
int one_read = 0;
int ret = h->read(h, 0, (byte*)&one_read, sizeof(int));
assert(!ret);
assert(one_read == one);
stasis_write_buffer_t * w = h->write_buffer(h, sizeof(int), sizeof(int));
*((int*)(w->buf)) = two;
w->h->release_write_buffer(w);
one_read = 0;
stasis_read_buffer_t * r = h->read_buffer(h, 0, sizeof(int));
one_read = *((int*)(r->buf));
r->h->release_read_buffer(r);
assert(one == one_read);
int two_read = 0;
assert(! h->read(h, sizeof(int), (byte*)&two_read, sizeof(int)));
assert(two == two_read);
}
typedef struct {
int * values;
int count;
stasis_handle_t * h;
} thread_arg;
#define VALUE_COUNT 100000
#define THREAD_COUNT 100
#define OPS_PER_THREAD 500000
lsn_t trunc_val;
pthread_mutex_t trunc_mut = PTHREAD_MUTEX_INITIALIZER;
void load_handle(thread_arg* t) {
lsn_t * offsets = malloc(t->count * sizeof(lsn_t));
stasis_handle_t * h = t->h;
for(int i = 0; i < t->count; i++) {
offsets[i] = i * sizeof(int);
}
for(int i = 0; i < OPS_PER_THREAD; i++) {
int val = stasis_util_random64(t->count);
if(offsets[val] == -1) {
// Need to write it somewhere.
long choice = stasis_util_random64(2);
switch(choice) {
case 0: { // overwrite old entry with write()
long val2 = stasis_util_random64(t->count);
offsets[val] = offsets[val2];
offsets[val2] = -1;
if(offsets[val] != -1) {
int ret = h->write(h, offsets[val], (const byte*)&(t->values[val]), sizeof(int));
if(ret) {
assert(ret == EDOM);
offsets[val] = -1;
i--;
}
} else {
i--;
2010-04-08 23:50:01 +00:00
}
} break;
case 1: { // overwrite old entry with write_buffer()
long val2 = stasis_util_random64(t->count);
offsets[val] = offsets[val2];
offsets[val2] = -1;
if(offsets[val] != -1) {
stasis_write_buffer_t * w = h->write_buffer(h, offsets[val], sizeof(int));
2010-04-08 23:50:01 +00:00
if(!w->error) {
*((int*)w->buf) = t->values[val];
assert(w->len == sizeof(int));
assert(w->off == offsets[val]);
2010-04-08 23:50:01 +00:00
} else {
assert(w->error == EDOM);
offsets[val] = -1;
i--;
2010-04-08 23:50:01 +00:00
}
w->h->release_write_buffer(w);
} else {
i--;
2010-04-08 23:50:01 +00:00
}
} break;
default: {
abort();
}
}
int check;
int ret = h->read(h, offsets[val], (byte*)&check, sizeof(int));
if(!ret) {
2010-04-08 23:50:01 +00:00
assert(check == t->values[val]);
}
} else {
// Read the value.
long choice = stasis_util_random64(2);
switch(choice) {
case 0: { // read
int j = -1;
int ret = h->read(h, offsets[val], (byte*)&j, sizeof(int));
if(!ret) {
assert(j == t->values[val]);
} else {
assert(ret == EDOM);
}
} break;
case 1: { // read_buffer
stasis_read_buffer_t * r = h->read_buffer(h, offsets[val], sizeof(int));
if(!r->error) {
assert(*(int*)(r->buf) == t->values[val]);
assert(r->len == sizeof(int));
r->h->release_read_buffer(r);
} else {
assert(r->error == EDOM);
r->h->release_read_buffer(r);
}
} break;
default:
abort();
};
}
// Force 1% of the time.
if(!stasis_util_random64(100)) {
h->force(h);
}
}
free(offsets);
}
void handle_sequentialtest(stasis_handle_t * h) {
time_t seed = time(0);
2007-10-22 20:48:12 +00:00
printf("Seed = %ld\n", seed);
srandom(seed);
int * values = malloc(VALUE_COUNT * sizeof(int));
for(int i = 0; i < VALUE_COUNT; i++) {
values[i] = i;
}
trunc_val = 0;
thread_arg arg = { values, VALUE_COUNT, h};
load_handle(&arg);
free(values);
}
void handle_concurrencytest(stasis_handle_t * h) {
int vc = stasis_util_random64(VALUE_COUNT) + 10;
2010-04-08 23:50:01 +00:00
printf("Running concurrency test with %d values\n", vc); fflush(stdout);
int * values = malloc(vc * sizeof(int));
for(int i = 0; i < vc; i++) {
values[i] = i;
}
thread_arg * args = malloc(THREAD_COUNT * sizeof(thread_arg));
pthread_t * threads = malloc(THREAD_COUNT * sizeof(pthread_t));
2010-04-08 23:50:01 +00:00
stasis_handle_t ** handles = malloc(THREAD_COUNT / 2 * sizeof(*handles));
int val_per_thread = vc / THREAD_COUNT;
trunc_val = 0;
for(int i = 0; i < THREAD_COUNT; i++) {
args[i].values = &(values[i * val_per_thread]);
args[i].count = val_per_thread;
2010-04-08 23:50:01 +00:00
if(!(i % 2)) {
handles[i/2] = h->dup(h);
h = handles[i/2];
}
args[i].h = h;
pthread_create(&threads[i], 0, (void*(*)(void*))load_handle, &args[i]);
}
for(int i = 0; i < THREAD_COUNT; i++) {
pthread_join(threads[i], 0);
}
2010-04-08 23:50:01 +00:00
for(int i = 0; i < THREAD_COUNT / 2; i++) {
handles[i]->close(handles[i]);
}
free(values);
free(args);
free(threads);
2010-04-08 23:50:01 +00:00
free(handles);
}
/**
@test
Check the memory I/O handle.
*/
START_TEST(io_memoryTest) {
2007-10-22 20:48:12 +00:00
printf("io_memoryTest\n"); fflush(stdout);
stasis_handle_t * h;
h = stasis_handle(open_memory)();
// h = stasis_handle(open_debug)(h);
handle_smoketest(h);
h->close(h);
h = stasis_handle(open_memory)();
// h = stasis_handle(open_debug)(h);
handle_sequentialtest(h);
h->close(h);
h = stasis_handle(open_memory)();
// h = stasis_handle(open_debug)(h);
handle_concurrencytest(h);
h->close(h);
} END_TEST
START_TEST(io_fileTest) {
2007-10-22 20:48:12 +00:00
printf("io_fileTest\n"); fflush(stdout);
stasis_handle_t * h;
h = stasis_handle(open_file)("logfile.txt", O_CREAT | O_RDWR, FILE_PERM);
// h = stasis_handle(open_debug)(h);
handle_smoketest(h);
h->close(h);
remove("logfile.txt");
h = stasis_handle(open_file)("logfile.txt", O_CREAT | O_RDWR, FILE_PERM);
//h = stasis_handle(open_debug)(h);
handle_sequentialtest(h);
h->close(h);
remove("logfile.txt");
h = stasis_handle(open_file)("logfile.txt", O_CREAT | O_RDWR, FILE_PERM);
2010-04-08 23:50:01 +00:00
// handle_concurrencytest(h); // fails by design
h->close(h);
remove("logfile.txt");
} END_TEST
START_TEST(io_pfileTest) {
2007-10-22 20:48:12 +00:00
printf("io_pfileTest\n"); fflush(stdout);
stasis_handle_t * h;
h = stasis_handle(open_pfile)("logfile.txt", O_CREAT | O_RDWR, FILE_PERM);
// h = stasis_handle(open_debug)(h);
handle_smoketest(h);
h->close(h);
remove("logfile.txt");
h = stasis_handle(open_pfile)("logfile.txt", O_CREAT | O_RDWR, FILE_PERM);
//h = stasis_handle(open_debug)(h);
handle_sequentialtest(h);
h->close(h);
remove("logfile.txt");
h = stasis_handle(open_pfile)("logfile.txt", O_CREAT | O_RDWR, FILE_PERM);
2010-04-08 23:50:01 +00:00
handle_concurrencytest(h);
h->close(h);
remove("logfile.txt");
} END_TEST
START_TEST(io_raid1pfileTest) {
printf("io_raid1pfileTest\n"); fflush(stdout);
const char * A = "vol1.txt";
const char * B = "vol2.txt";
remove(A);
remove(B);
stasis_handle_t *h, *a, *b;
a = stasis_handle(open_pfile)(A, O_CREAT | O_RDWR, FILE_PERM);
b = stasis_handle(open_pfile)(B, O_CREAT | O_RDWR, FILE_PERM);
h = stasis_handle_open_raid1(a, b);
// h = stasis_handle(open_debug)(h);
handle_smoketest(h);
h->close(h);
remove(A);
remove(B);
a = stasis_handle(open_pfile)(A, O_CREAT | O_RDWR, FILE_PERM);
b = stasis_handle(open_pfile)(B, O_CREAT | O_RDWR, FILE_PERM);
h = stasis_handle_open_raid1(a, b);
// h = stasis_handle(open_debug)(h);
handle_sequentialtest(h);
h->close(h);
remove(A);
remove(B);
a = stasis_handle(open_pfile)(A, O_CREAT | O_RDWR, FILE_PERM);
b = stasis_handle(open_pfile)(B, O_CREAT | O_RDWR, FILE_PERM);
h = stasis_handle_open_raid1(a, b);
// h = stasis_handle(open_debug)(h);
handle_concurrencytest(h);
h->close(h);
remove(A);
remove(B);
merge in changes from svn[r1572..r1601] ------------------------------------------------------------------------ r1601 | sears.russell@gmail.com | 2012-03-20 18:43:00 -0400 (Tue, 20 Mar 2012) | 1 line commit bLSM bloom filter to stasis/util, which is where it really belongs ------------------------------------------------------------------------ r1600 | sears.russell@gmail.com | 2012-03-04 01:58:38 -0500 (Sun, 04 Mar 2012) | 1 line fix memory leak in skiplist unit test (now it is valgrind clean) ------------------------------------------------------------------------ r1599 | sears.russell@gmail.com | 2012-03-04 01:58:05 -0500 (Sun, 04 Mar 2012) | 1 line fix typo in finalize type ------------------------------------------------------------------------ r1598 | sears.russell@gmail.com | 2012-03-04 00:59:59 -0500 (Sun, 04 Mar 2012) | 1 line add comparator and finalizer parameters to skiplist constructor ------------------------------------------------------------------------ r1597 | sears.russell@gmail.com | 2012-03-03 18:23:16 -0500 (Sat, 03 Mar 2012) | 1 line bugfixes for skiplist ------------------------------------------------------------------------ r1596 | sears.russell@gmail.com | 2012-03-02 15:05:07 -0500 (Fri, 02 Mar 2012) | 1 line updated concurrentSkipList. Seeing strange crashes ------------------------------------------------------------------------ r1595 | sears.russell@gmail.com | 2012-03-01 16:51:59 -0500 (Thu, 01 Mar 2012) | 1 line add progress reports ------------------------------------------------------------------------ r1594 | sears.russell@gmail.com | 2012-02-28 13:17:05 -0500 (Tue, 28 Feb 2012) | 1 line experimental support for automatic logfile preallocation ------------------------------------------------------------------------ r1593 | sears.russell@gmail.com | 2012-02-28 12:10:01 -0500 (Tue, 28 Feb 2012) | 1 line add histogram reporting to rawIOPS benchmark ------------------------------------------------------------------------ r1592 | sears.russell@gmail.com | 2012-02-24 16:31:36 -0500 (Fri, 24 Feb 2012) | 1 line userspace raid 0 implementation ------------------------------------------------------------------------ r1591 | sears.russell@gmail.com | 2012-02-12 01:47:25 -0500 (Sun, 12 Feb 2012) | 1 line add skiplist unit test, fix compile warnings ------------------------------------------------------------------------ r1590 | sears.russell@gmail.com | 2012-02-12 00:52:52 -0500 (Sun, 12 Feb 2012) | 1 line fix compile error ------------------------------------------------------------------------ r1589 | sears.russell@gmail.com | 2012-02-12 00:50:21 -0500 (Sun, 12 Feb 2012) | 1 line fix some bugs in hazard.h surrounding thread list management and overruns of R under high contention ------------------------------------------------------------------------ r1588 | sears.russell@gmail.com | 2012-02-11 14:23:10 -0500 (Sat, 11 Feb 2012) | 1 line add hazard pointer for get_lock. It was implicitly blowing away the hazard pointer protecting y in the caller ------------------------------------------------------------------------ r1587 | sears.russell@gmail.com | 2012-02-10 18:51:25 -0500 (Fri, 10 Feb 2012) | 1 line fix null pointer bug ------------------------------------------------------------------------ r1586 | sears.russell@gmail.com | 2012-02-10 18:03:39 -0500 (Fri, 10 Feb 2012) | 1 line add simple refcounting scheme to concurrentSkipList. This solves the problem where a deleted node points to another deleted node, and we only have a hazard pointer for the first node. ------------------------------------------------------------------------ r1585 | sears.russell@gmail.com | 2012-02-10 14:19:14 -0500 (Fri, 10 Feb 2012) | 1 line add hazard pointers for update using the smallest free slot first. The old method left a race condition, since hazard_scan stops at the first null pointer. ------------------------------------------------------------------------ r1584 | sears.russell@gmail.com | 2012-02-10 02:45:30 -0500 (Fri, 10 Feb 2012) | 1 line add hazard pointers for update array ------------------------------------------------------------------------ r1583 | sears.russell@gmail.com | 2012-02-10 00:04:50 -0500 (Fri, 10 Feb 2012) | 1 line skiplist update: concurrent, but broken ------------------------------------------------------------------------ r1582 | sears.russell@gmail.com | 2012-02-09 17:44:27 -0500 (Thu, 09 Feb 2012) | 1 line skip list implementation. Not concurrent yet. ------------------------------------------------------------------------ r1581 | sears.russell@gmail.com | 2012-02-08 13:33:29 -0500 (Wed, 08 Feb 2012) | 1 line Commit of a bunch of new, unused code: KISS random number generator, Hazard Pointers, SUX latches (untested) and bit twiddling for concurrent b-tree ------------------------------------------------------------------------ r1580 | sears.russell@gmail.com | 2012-01-17 19:17:37 -0500 (Tue, 17 Jan 2012) | 1 line fix typo ------------------------------------------------------------------------ r1579 | sears.russell@gmail.com | 2012-01-11 18:33:31 -0500 (Wed, 11 Jan 2012) | 1 line static build fixes for linux. hopefully these do not break macos... ------------------------------------------------------------------------ r1578 | sears.russell@gmail.com | 2012-01-09 19:13:34 -0500 (Mon, 09 Jan 2012) | 1 line fix cmake under linux ------------------------------------------------------------------------ r1577 | sears.russell@gmail.com | 2012-01-09 18:37:15 -0500 (Mon, 09 Jan 2012) | 1 line fix linux static binary compilation bugs ------------------------------------------------------------------------ r1576 | sears.russell | 2012-01-09 18:00:08 -0500 (Mon, 09 Jan 2012) | 1 line port to macos x ------------------------------------------------------------------------ r1575 | sears.russell | 2012-01-09 17:39:43 -0500 (Mon, 09 Jan 2012) | 1 line add missing _ from sync call name ------------------------------------------------------------------------ r1574 | sears.russell@gmail.com | 2012-01-09 14:26:31 -0500 (Mon, 09 Jan 2012) | 1 line add -rt flag to static builds ------------------------------------------------------------------------ r1573 | sears.russell@gmail.com | 2011-12-20 23:38:29 -0500 (Tue, 20 Dec 2011) | 1 line Simple makefile geared toward building libstasis.so and libstasis.a (and nothing else) ------------------------------------------------------------------------ r1572 | sears.russell@gmail.com | 2011-12-20 22:37:54 -0500 (Tue, 20 Dec 2011) | 1 line add some missing #include<config.h> lines
2012-04-21 16:52:31 +00:00
} END_TEST
START_TEST(io_raid0pfileTest) {
printf("io_raid0pfileTest\n"); fflush(stdout);
uint32_t stripe_size = PAGE_SIZE;
const char * A = "vol1.txt";
const char * B = "vol2.txt";
remove(A);
remove(B);
stasis_handle_t *h;
stasis_handle_t *hp[2];
hp[0] = stasis_handle(open_pfile)(A, O_CREAT | O_RDWR, FILE_PERM);
hp[1] = stasis_handle(open_pfile)(B, O_CREAT | O_RDWR, FILE_PERM);
h = stasis_handle_open_raid0(2, hp, stripe_size);
// h = stasis_handle(open_debug)(h);
handle_smoketest(h);
h->close(h);
remove(A);
remove(B);
hp[0] = stasis_handle(open_pfile)(A, O_CREAT | O_RDWR, FILE_PERM);
hp[1] = stasis_handle(open_pfile)(B, O_CREAT | O_RDWR, FILE_PERM);
h = stasis_handle_open_raid0(2, hp, stripe_size);
// h = stasis_handle(open_debug)(h);
handle_sequentialtest(h);
h->close(h);
remove(A);
remove(B);
hp[0] = stasis_handle(open_pfile)(A, O_CREAT | O_RDWR, FILE_PERM);
hp[1] = stasis_handle(open_pfile)(B, O_CREAT | O_RDWR, FILE_PERM);
h = stasis_handle_open_raid0(2, hp, stripe_size);
// h = stasis_handle(open_debug)(h);
handle_concurrencytest(h);
h->close(h);
remove(A);
remove(B);
} END_TEST
/*
static stasis_handle_t * fast_factory(lsn_t off, lsn_t len, void * ignored) {
stasis_handle_t * h = stasis_handle(open_memory)(off);
// h = stasis_handle(open_debug)(h);
stasis_write_buffer_t * w = h->append_buffer(h, len);
w->h->release_write_buffer(w);
return h;
}
typedef struct sf_args {
char * filename;
int openMode;
int filePerm;
} sf_args;
static stasis_handle_t * slow_factory_file(void * argsP) {
sf_args * args = (sf_args*) argsP;
return stasis_handle(open_file)(0, args->filename, args->openMode, args->filePerm);
}
static stasis_handle_t * slow_pfile_factory(void * argsP) {
stasis_handle_t * h = argsP;
return h;
}
static int slow_pfile_close(void * argsP) {
stasis_handle_t * h = argsP;
return h->close(h);
}
START_TEST(io_nonBlockingTest_file) {
printf("io_nonBlockingTest\n"); fflush(stdout);
stasis_handle_t * h;
sf_args slow_args = {
"logfile.txt",
O_CREAT | O_RDWR,
FILE_PERM
};
h = stasis_handle(open_non_blocking)(slow_factory_file, 0, &slow_args, 0,
fast_factory, 0,
5, 1024*1024, 100);
// h = stasis_handle(open_debug)(h);
handle_smoketest(h);
h->close(h);
remove("logfile.txt");
h = stasis_handle(open_non_blocking)(slow_factory_file, 0, &slow_args, 0,
fast_factory, 0,
5, 1024*1024, 100);
//h = stasis_handle(open_debug)(h);
handle_sequentialtest(h);
h->close(h);
remove("logfile.txt");
h = stasis_handle(open_non_blocking)(slow_factory_file, 0, &slow_args, 0,
fast_factory, 0,
5, 1024 * 1024, 100);
handle_concurrencytest(h);
h->close(h);
remove("logfile.txt");
} END_TEST
START_TEST(io_nonBlockingTest_pfile) {
2007-10-22 20:48:12 +00:00
printf("io_nonBlockingTest\n"); fflush(stdout);
stasis_handle_t * h;
sf_args slow_args = {
"logfile.txt",
O_CREAT | O_RDWR,
FILE_PERM
};
stasis_handle_t * pfile_singleton = slow_factory_file(&slow_args);
h = stasis_handle(open_non_blocking)(slow_pfile_factory, slow_pfile_close, pfile_singleton, 0,
fast_factory, 0,
5, 1024*1024, 100);
// h = stasis_handle(open_debug)(h);
handle_smoketest(h);
h->close(h);
remove("logfile.txt");
pfile_singleton = slow_factory_file(&slow_args);
h = stasis_handle(open_non_blocking)(slow_pfile_factory, slow_pfile_close, pfile_singleton, 0,
fast_factory, 0,
5, 1024*1024, 100);
//h = stasis_handle(open_debug)(h);
handle_sequentialtest(h);
h->close(h);
remove("logfile.txt");
pfile_singleton = slow_factory_file(&slow_args);
h = stasis_handle(open_non_blocking)(slow_pfile_factory, slow_pfile_close, pfile_singleton, 0,
fast_factory, 0,
5, 1024 * 1024, 100);
handle_concurrencytest(h);
h->close(h);
remove("logfile.txt");
} END_TEST
*/
/**
Add suite declarations here
*/
Suite * check_suite(void) {
Suite *s = suite_create("io");
/* Begin a new test */
TCase *tc = tcase_create("io_test");
2009-08-08 07:50:06 +00:00
// tcase_set_timeout(tc, 1800); // thirty minute timeout
/* Sub tests are added, one per line, here */
2006-11-22 05:03:32 +00:00
tcase_add_test(tc, io_memoryTest);
tcase_add_test(tc, io_fileTest);
tcase_add_test(tc, io_pfileTest);
tcase_add_test(tc, io_raid1pfileTest);
merge in changes from svn[r1572..r1601] ------------------------------------------------------------------------ r1601 | sears.russell@gmail.com | 2012-03-20 18:43:00 -0400 (Tue, 20 Mar 2012) | 1 line commit bLSM bloom filter to stasis/util, which is where it really belongs ------------------------------------------------------------------------ r1600 | sears.russell@gmail.com | 2012-03-04 01:58:38 -0500 (Sun, 04 Mar 2012) | 1 line fix memory leak in skiplist unit test (now it is valgrind clean) ------------------------------------------------------------------------ r1599 | sears.russell@gmail.com | 2012-03-04 01:58:05 -0500 (Sun, 04 Mar 2012) | 1 line fix typo in finalize type ------------------------------------------------------------------------ r1598 | sears.russell@gmail.com | 2012-03-04 00:59:59 -0500 (Sun, 04 Mar 2012) | 1 line add comparator and finalizer parameters to skiplist constructor ------------------------------------------------------------------------ r1597 | sears.russell@gmail.com | 2012-03-03 18:23:16 -0500 (Sat, 03 Mar 2012) | 1 line bugfixes for skiplist ------------------------------------------------------------------------ r1596 | sears.russell@gmail.com | 2012-03-02 15:05:07 -0500 (Fri, 02 Mar 2012) | 1 line updated concurrentSkipList. Seeing strange crashes ------------------------------------------------------------------------ r1595 | sears.russell@gmail.com | 2012-03-01 16:51:59 -0500 (Thu, 01 Mar 2012) | 1 line add progress reports ------------------------------------------------------------------------ r1594 | sears.russell@gmail.com | 2012-02-28 13:17:05 -0500 (Tue, 28 Feb 2012) | 1 line experimental support for automatic logfile preallocation ------------------------------------------------------------------------ r1593 | sears.russell@gmail.com | 2012-02-28 12:10:01 -0500 (Tue, 28 Feb 2012) | 1 line add histogram reporting to rawIOPS benchmark ------------------------------------------------------------------------ r1592 | sears.russell@gmail.com | 2012-02-24 16:31:36 -0500 (Fri, 24 Feb 2012) | 1 line userspace raid 0 implementation ------------------------------------------------------------------------ r1591 | sears.russell@gmail.com | 2012-02-12 01:47:25 -0500 (Sun, 12 Feb 2012) | 1 line add skiplist unit test, fix compile warnings ------------------------------------------------------------------------ r1590 | sears.russell@gmail.com | 2012-02-12 00:52:52 -0500 (Sun, 12 Feb 2012) | 1 line fix compile error ------------------------------------------------------------------------ r1589 | sears.russell@gmail.com | 2012-02-12 00:50:21 -0500 (Sun, 12 Feb 2012) | 1 line fix some bugs in hazard.h surrounding thread list management and overruns of R under high contention ------------------------------------------------------------------------ r1588 | sears.russell@gmail.com | 2012-02-11 14:23:10 -0500 (Sat, 11 Feb 2012) | 1 line add hazard pointer for get_lock. It was implicitly blowing away the hazard pointer protecting y in the caller ------------------------------------------------------------------------ r1587 | sears.russell@gmail.com | 2012-02-10 18:51:25 -0500 (Fri, 10 Feb 2012) | 1 line fix null pointer bug ------------------------------------------------------------------------ r1586 | sears.russell@gmail.com | 2012-02-10 18:03:39 -0500 (Fri, 10 Feb 2012) | 1 line add simple refcounting scheme to concurrentSkipList. This solves the problem where a deleted node points to another deleted node, and we only have a hazard pointer for the first node. ------------------------------------------------------------------------ r1585 | sears.russell@gmail.com | 2012-02-10 14:19:14 -0500 (Fri, 10 Feb 2012) | 1 line add hazard pointers for update using the smallest free slot first. The old method left a race condition, since hazard_scan stops at the first null pointer. ------------------------------------------------------------------------ r1584 | sears.russell@gmail.com | 2012-02-10 02:45:30 -0500 (Fri, 10 Feb 2012) | 1 line add hazard pointers for update array ------------------------------------------------------------------------ r1583 | sears.russell@gmail.com | 2012-02-10 00:04:50 -0500 (Fri, 10 Feb 2012) | 1 line skiplist update: concurrent, but broken ------------------------------------------------------------------------ r1582 | sears.russell@gmail.com | 2012-02-09 17:44:27 -0500 (Thu, 09 Feb 2012) | 1 line skip list implementation. Not concurrent yet. ------------------------------------------------------------------------ r1581 | sears.russell@gmail.com | 2012-02-08 13:33:29 -0500 (Wed, 08 Feb 2012) | 1 line Commit of a bunch of new, unused code: KISS random number generator, Hazard Pointers, SUX latches (untested) and bit twiddling for concurrent b-tree ------------------------------------------------------------------------ r1580 | sears.russell@gmail.com | 2012-01-17 19:17:37 -0500 (Tue, 17 Jan 2012) | 1 line fix typo ------------------------------------------------------------------------ r1579 | sears.russell@gmail.com | 2012-01-11 18:33:31 -0500 (Wed, 11 Jan 2012) | 1 line static build fixes for linux. hopefully these do not break macos... ------------------------------------------------------------------------ r1578 | sears.russell@gmail.com | 2012-01-09 19:13:34 -0500 (Mon, 09 Jan 2012) | 1 line fix cmake under linux ------------------------------------------------------------------------ r1577 | sears.russell@gmail.com | 2012-01-09 18:37:15 -0500 (Mon, 09 Jan 2012) | 1 line fix linux static binary compilation bugs ------------------------------------------------------------------------ r1576 | sears.russell | 2012-01-09 18:00:08 -0500 (Mon, 09 Jan 2012) | 1 line port to macos x ------------------------------------------------------------------------ r1575 | sears.russell | 2012-01-09 17:39:43 -0500 (Mon, 09 Jan 2012) | 1 line add missing _ from sync call name ------------------------------------------------------------------------ r1574 | sears.russell@gmail.com | 2012-01-09 14:26:31 -0500 (Mon, 09 Jan 2012) | 1 line add -rt flag to static builds ------------------------------------------------------------------------ r1573 | sears.russell@gmail.com | 2011-12-20 23:38:29 -0500 (Tue, 20 Dec 2011) | 1 line Simple makefile geared toward building libstasis.so and libstasis.a (and nothing else) ------------------------------------------------------------------------ r1572 | sears.russell@gmail.com | 2011-12-20 22:37:54 -0500 (Tue, 20 Dec 2011) | 1 line add some missing #include<config.h> lines
2012-04-21 16:52:31 +00:00
tcase_add_test(tc, io_raid0pfileTest);
//tcase_add_test(tc, io_nonBlockingTest_file);
//tcase_add_test(tc, io_nonBlockingTest_pfile);
/* --------------------------------------------- */
tcase_add_checked_fixture(tc, setup, teardown);
suite_add_tcase(s, tc);
return s;
}
#include "../check_setup.h"