DragonFly commits List (threaded) for 2007-10
DragonFly BSD
DragonFly commits List (threaded) for 2007-10
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

cvs commit: src/sys/vfs/hammer hammer.txt


From: Matthew Dillon <dillon@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 12 Oct 2007 10:17:20 -0700 (PDT)

dillon      2007/10/12 10:17:20 PDT

DragonFly src repository

  Modified files:
    sys/vfs/hammer       hammer.txt 
  Log:
  Adjust the description of HAMMER's storage limitations.  I have rearranged
  the way clusters are organized in order to implement a layered storage
  management mechanic within the cluster.  To do this the number of 16K
  filesystem buffers in a cluster had to be limited to 4096.  This allows
  several layered A-lists to be embedded in the cluster header instead of
  just one but limits the cluster size to 64MB instead of 512M.  Without
  any other changes this would have limited volumes to 2TB, which is too small.
  
  Add a new super-cluster layer to support volumes larger then 2TB.  Instead
  of being limited to 32768 clusters per volume we now have a limit of
  16384 super-clusters per volume and 32768 clusters per super-cluster,
  resulting in a limit of 32768TB per volume.
  
  A super-cluster is just another 16K filesystem buffer which adds another
  A-List layer to the volume's storage management scheme.  It turns out to
  be totally trivial to implement.  Cluster allocations will still be optimal
  in a super-cluster arrangement simply by caching the last super-cluster
  an allocation was made from.
  
  Revision  Changes    Path
  1.2       +16 -18    src/sys/vfs/hammer/hammer.txt


http://www.dragonflybsd.org/cvsweb/src/sys/vfs/hammer/hammer.txt.diff?r1=1.1&r2=1.2&f=u



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]