1. 16 10月, 2008 2 次提交
  2. 23 9月, 2008 1 次提交
  3. 24 7月, 2008 1 次提交
    • A
      ext4: Don't allow lg prealloc list to be grow large. · 6be2ded1
      Aneesh Kumar K.V 提交于
      Currently, the locality group prealloc list is freed only when there
      is a block allocation failure. This can result in large number of
      entries in the preallocation list making ext4_mb_use_preallocated()
      expensive.
      
      To fix this, we convert the locality group prealloc list to a hash
      list. The hash index is the order of number of blocks in the prealloc
      space with a max order of 9. When adding prealloc space to the list we
      make sure total entries for each order does not exceed 8. If it is
      more than 8 we discard few entries and make sure the we have only <= 5
      entries.
      Signed-off-by: NAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
      Signed-off-by: NTheodore Ts'o <tytso@mit.edu>
      6be2ded1
  4. 30 4月, 2008 1 次提交