On Mon, Mar 10, 2014 at 03:31:49PM +0800, Chunyan Liu wrote: > diff --git a/block/qed.h b/block/qed.h > index 5d65bea..b024751 100644 > --- a/block/qed.h > +++ b/block/qed.h > @@ -43,7 +43,7 @@ > * > * All fields are little-endian on disk. > */ > - > +#define QED_DEFAULT_CLUSTER_SIZE 65536 > enum { > QED_MAGIC = 'Q' | 'E' << 8 | 'D' << 16 | '\0' << 24, > > @@ -69,7 +69,6 @@ enum { > */ > QED_MIN_CLUSTER_SIZE = 4 * 1024, /* in bytes */ > QED_MAX_CLUSTER_SIZE = 64 * 1024 * 1024, > - QED_DEFAULT_CLUSTER_SIZE = 64 * 1024,
Why is this change made for cluster size but not table size? Stefan