1. 09 2月, 2009 3 次提交
  2. 19 1月, 2009 2 次提交
  3. 04 12月, 2008 1 次提交
  4. 30 10月, 2008 3 次提交
  5. 13 8月, 2008 2 次提交
  6. 28 7月, 2008 3 次提交
  7. 29 4月, 2008 2 次提交
  8. 18 4月, 2008 7 次提交
  9. 10 4月, 2008 1 次提交
  10. 14 2月, 2008 1 次提交
  11. 07 2月, 2008 2 次提交
  12. 10 12月, 2007 1 次提交
  13. 16 10月, 2007 2 次提交
  14. 15 10月, 2007 1 次提交
  15. 05 9月, 2007 1 次提交
    • E
      [XFS] fix nasty quota hashtable allocation bug · 5995cb7d
      Eric Sandeen 提交于
      This git mod: 77e4635a
      converted to a "greedy" allocation interface, but for the quota hashtables
      it switched from allocating XFS_QM_HASHSIZE (nr of elements)
      xfs_dqhash_t's to allocating only XFS_QM_HASHSIZE *bytes* - quite a lot
      smaller! Then when we converted hsize "back" to nr of elements (the
      division line) hsize went to 0. This was leading to oopses when running
      any quota tests on the Fedora 8 test kernel, but the problem has been
      there for almost a year.
      
      SGI-PV: 968837
      SGI-Modid: xfs-linux-melb:xfs-kern:29354a
      Signed-off-by: NEric Sandeen <sandeen@sandeen.net>
      Signed-off-by: NDavid Chinner <dgc@sgi.com>
      Signed-off-by: NTim Shimmin <tes@sgi.com>
      5995cb7d
  16. 18 7月, 2007 1 次提交
  17. 14 7月, 2007 2 次提交
  18. 08 5月, 2007 2 次提交
  19. 10 2月, 2007 2 次提交
    • E
      [XFS] Remove unused header files for MAC and CAP checking functionality. · 7bc5306d
      Eric Sandeen 提交于
      xfs_mac.h and xfs_cap.h provide definitions and macros that aren't used
      anywhere in XFS at all. They are left-overs from "to be implement at some
      point in the future" functionality that Irix XFS has. If this
      functionality ever goes into Linux, it will be provided at a different
      layer, most likely through the security hooks in the kernel so we will
      never need this functionality in XFS.
      
      Patch provided by Eric Sandeen (sandeen@sandeen.net).
      
      SGI-PV: 960895
      SGI-Modid: xfs-linux-melb:xfs-kern:28036a
      Signed-off-by: NEric Sandeen <sandeen@sandeen.net>
      Signed-off-by: NDavid Chinner <dgc@sgi.com>
      Signed-off-by: NTim Shimmin <tes@sgi.com>
      7bc5306d
    • D
      [XFS] Keep stack usage down for 4k stacks by using noinline. · 7989cb8e
      David Chinner 提交于
      gcc-4.1 and more recent aggressively inline static functions which
      increases XFS stack usage by ~15% in critical paths. Prevent this from
      occurring by adding noinline to the STATIC definition.
      
      Also uninline some functions that are too large to be inlined and were
      causing problems with CONFIG_FORCED_INLINING=y.
      
      Finally, clean up all the different users of inline, __inline and
      __inline__ and put them under one STATIC_INLINE macro. For debug kernels
      the STATIC_INLINE macro uninlines those functions.
      
      SGI-PV: 957159
      SGI-Modid: xfs-linux-melb:xfs-kern:27585a
      Signed-off-by: NDavid Chinner <dgc@sgi.com>
      Signed-off-by: NDavid Chatterton <chatz@sgi.com>
      Signed-off-by: NTim Shimmin <tes@sgi.com>
      7989cb8e
  20. 28 9月, 2006 1 次提交