An error occurred fetching the project authors.
  1. 11 May, 2012 1 commit
    • Linus Torvalds's avatar
      vfs: make it possible to access the dentry hash/len as one 64-bit entry · 26fe5750
      Linus Torvalds authored
      This allows comparing hash and len in one operation on 64-bit
      architectures.  Right now only __d_lookup_rcu() takes advantage of this,
      since that is the case we care most about.
      
      The use of anonymous struct/unions hides the alternate 64-bit approach
      from most users, the exception being a few cases where we initialize a
      'struct qstr' with a static initializer.  This makes the problematic
      cases use a new QSTR_INIT() helper function for that (but initializing
      just the name pointer with a "{ .name = xyzzy }" initializer remains
      valid, as does just copying another qstr structure).
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      26fe5750
  2. 21 Mar, 2012 1 commit
  3. 04 Jan, 2012 3 commits
  4. 02 Nov, 2011 1 commit
  5. 20 Jul, 2011 1 commit
  6. 28 May, 2011 1 commit
  7. 26 May, 2011 2 commits
  8. 09 Mar, 2011 1 commit
    • Ryusuke Konishi's avatar
      nilfs2: get rid of nilfs_sb_info structure · e3154e97
      Ryusuke Konishi authored
      This directly uses sb->s_fs_info to keep a nilfs filesystem object and
      fully removes the intermediate nilfs_sb_info structure.  With this
      change, the hierarchy of on-memory structures of nilfs will be
      simplified as follows:
      
      Before:
        super_block
             -> nilfs_sb_info
                   -> the_nilfs
                         -> cptree --+-> nilfs_root (current file system)
                                     +-> nilfs_root (snapshot A)
                                     +-> nilfs_root (snapshot B)
                                     :
                   -> nilfs_sc_info (log writer structure)
      After:
        super_block
             -> the_nilfs
                   -> cptree --+-> nilfs_root (current file system)
                               +-> nilfs_root (snapshot A)
                               +-> nilfs_root (snapshot B)
                               :
                   -> nilfs_sc_info (log writer structure)
      
      The reason why we didn't design so from the beginning is because the
      initial shape also differed from the above.  The early hierachy was
      composed of "per-mount-point" super_block -> nilfs_sb_info pairs and a
      shared nilfs object.  On the kernel 2.6.37, it was changed to the
      current shape in order to unify super block instances into one per
      device, and this cleanup became applicable as the result.
      Signed-off-by: default avatarRyusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
      e3154e97
  9. 03 Mar, 2011 1 commit
  10. 10 Jan, 2011 1 commit
    • Ryusuke Konishi's avatar
      nilfs2: fiemap support · 622daaff
      Ryusuke Konishi authored
      This adds fiemap to nilfs.  Two new functions, nilfs_fiemap and
      nilfs_find_uncommitted_extent are added.
      
      nilfs_fiemap() implements the fiemap inode operation, and
      nilfs_find_uncommitted_extent() helps to get a range of data blocks
      whose physical location has not been determined.
      
      nilfs_fiemap() collects extent information by looping through
      nilfs_bmap_lookup_contig and nilfs_find_uncommitted_extent routines.
      Signed-off-by: default avatarRyusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
      622daaff
  11. 26 Oct, 2010 1 commit
  12. 23 Oct, 2010 3 commits
  13. 03 Mar, 2010 1 commit
  14. 27 Nov, 2009 8 commits
  15. 22 Sep, 2009 1 commit
  16. 07 Apr, 2009 2 commits