
aquynh at gmail
Jun 11, 2005, 3:59 AM
Post #1 of 1
(11 views)
Permalink
|
|
[PATCH] blktap & parallax reorganize
|
|
at the moment blktap directory is a little bit messy: blktap and parallax code are mixed. this patch makes a new directory named parallax under blktap and put parallax code into it. (lets consider that parallax is an "application" or blktap, and we might have more in the future). it also makes some cleanups and little fixes to Makefiles. Andrew, please apply. this patch is a little bit big, so i gzip it and attach .gz file here (btw, what is the recommend size limit of attachment for this list?) Signed-off-by: Nguyen Anh Quynh <aquynh [at] gmail> Makefile | 106 --- README-PARALLAX | 177 ----- block-async.c | 393 ------------- block-async.h | 69 -- blockstore.c | 1350 --------------------------------------------- blockstore.h | 134 ---- blockstored |binary blockstored.c | 276 --------- bstest.c | 191 ------ parallax.c | 611 -------------------- parallax/Makefile | 118 +++ parallax/README | 177 +++++ parallax/block-async.c | 393 +++++++++++++ parallax/block-async.h | 69 ++ parallax/blockstore.c | 1350 +++++++++++++++++++++++++++++++++++++++++++++ parallax/blockstore.h | 134 ++++ parallax/blockstored |binary parallax/blockstored.c | 276 +++++++++ parallax/bstest.c | 191 ++++++ parallax/parallax.c | 611 ++++++++++++++++++++ parallax/radix.c | 631 +++++++++++++++++++++ parallax/radix.h | 45 + parallax/requests-async.c | 762 +++++++++++++++++++++++++ parallax/requests-async.h | 29 parallax/snaplog.c | 238 +++++++ parallax/snaplog.h | 61 ++ parallax/vdi.c | 367 ++++++++++++ parallax/vdi.h | 55 + parallax/vdi_create.c | 52 + parallax/vdi_fill.c | 81 ++ parallax/vdi_list.c | 47 + parallax/vdi_snap.c | 43 + parallax/vdi_snap_delete.c | 48 + parallax/vdi_snap_list.c | 82 ++ parallax/vdi_tree.c | 132 ++++ parallax/vdi_unittest.c | 184 ++++++ parallax/vdi_validate.c | 97 +++ radix.c | 631 --------------------- radix.h | 45 - requests-async.c | 762 ------------------------- requests-async.h | 29 snaplog.c | 238 ------- snaplog.h | 61 -- vdi.c | 367 ------------ vdi.h | 55 - vdi_create.c | 52 - vdi_fill.c | 81 -- vdi_list.c | 47 - vdi_snap.c | 43 - vdi_snap_delete.c | 48 - vdi_snap_list.c | 82 -- vdi_tree.c | 132 ---- vdi_unittest.c | 184 ------ vdi_validate.c | 97 --- 54 files changed, 6297 insertions(+), 6237 deletions(-)
|