1. 08 3月, 2011 2 次提交
  2. 10 1月, 2011 1 次提交
  3. 10 8月, 2010 2 次提交
    • C
      introduce __block_write_begin · 6e1db88d
      Christoph Hellwig 提交于
      Split up the block_write_begin implementation - __block_write_begin is a new
      trivial wrapper for block_prepare_write that always takes an already
      allocated page and can be either called from block_write_begin or filesystem
      code that already has a page allocated.  Remove the handling of already
      allocated pages from block_write_begin after switching all callers that
      do it to __block_write_begin.
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
      6e1db88d
    • C
      clean up write_begin usage for directories in pagecache · f4e420dc
      Christoph Hellwig 提交于
      For filesystem that implement directories in pagecache we call
      block_write_begin with an already allocated page for this code, while the
      normal regular file write path uses the default block_write_begin behaviour.
      
      Get rid of the __foofs_write_begin helper and opencode the normal write_begin
      call in foofs_write_begin, while adding a new foofs_prepare_chunk helper for
      the directory code.  The added benefit is that foofs_prepare_chunk has
      a much saner calling convention.
      
      Note that the interruptible flag passed into block_write_begin is always
      ignored if we already pass in a page (see next patch for details), and
      we never were doing truncations of exessive blocks for this case either so we
      can switch directly to block_write_begin_newtrunc.
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
      f4e420dc
  4. 25 7月, 2010 1 次提交
  5. 24 7月, 2010 1 次提交
    • R
      nilfs2: simplify nilfs_get_page function · c28e69d9
      Ryusuke Konishi 提交于
      Implementation of nilfs_get_page() is a bit old as below:
      
       - A common read_mapping_page inline function is now available instead
         of its read_cache_page use.
       - wait_on_page_locked() use in the function is eliminable since
         read_cache_page function does the same thing through wait_on_page_read().
       - PageUptodate() check is eliminable for the same reason.
      
      This renews nilfs_get_page() based on these points.
      Signed-off-by: NRyusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
      c28e69d9
  6. 14 3月, 2010 1 次提交
  7. 04 3月, 2010 2 次提交
  8. 27 11月, 2009 5 次提交
  9. 02 10月, 2009 1 次提交
  10. 13 7月, 2009 1 次提交
  11. 07 4月, 2009 3 次提交