X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FModules%2FStorage%2FLVM%2Finclude%2Flvm.h;h=5576e8eebf6c8227459a5b8dd5997752c2d1a4f1;hb=54f893f1c1091d5f0bef8458585300e44beb7e81;hp=3a9ef1b16b97131ef77179433ce75f4ac8cd06b1;hpb=06674bf290ab6a24398a5fde1b67060673e267ad;p=tpg%2Facess2.git diff --git a/KernelLand/Modules/Storage/LVM/include/lvm.h b/KernelLand/Modules/Storage/LVM/include/lvm.h index 3a9ef1b1..5576e8ee 100644 --- a/KernelLand/Modules/Storage/LVM/include/lvm.h +++ b/KernelLand/Modules/Storage/LVM/include/lvm.h @@ -16,14 +16,12 @@ struct sLVM_VolType { const char *Name; - size_t BlockSize; - int (*Read)(void *, Uint64, size_t, void *); int (*Write)(void *, Uint64, size_t, const void *); }; -extern int LVM_AddVolume(const tLVM_VolType *Type, const char *Name, void *Ptr, size_t BlockCount); +extern int LVM_AddVolume(const tLVM_VolType *Type, const char *Name, void *Ptr, size_t BlockSize, size_t BlockCount); #endif