1. 07 1月, 2010 26 次提交
  2. 06 1月, 2010 12 次提交
  3. 05 1月, 2010 2 次提交
    • D
      sparc64: Fix Niagara2 perf event handling. · e04ed38d
      David S. Miller 提交于
      For chips like Niagara2 that have true overflow indications
      in the %pcr (which we don't actually need and don't use)
      the interrupt signal persists until the overflow bits are
      cleared by an explicit %pcr write.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      e04ed38d
    • B
      exofs: simple_write_end does not mark_inode_dirty · efd124b9
      Boaz Harrosh 提交于
      exofs uses simple_write_end() for it's .write_end handler. But
      it is not enough because simple_write_end() does not call
      mark_inode_dirty() when it extends i_size. So even if we do
      call mark_inode_dirty at beginning of write out, with a very
      long IO and a saturated system we might get the .write_inode()
      called while still extend-writing to file and miss out on the last
      i_size updates.
      
      So override .write_end, call simple_write_end(), and afterwords if
      i_size was changed call mark_inode_dirty().
      
      It stands to logic that since simple_write_end() was the one extending
      i_size it should also call mark_inode_dirty(). But it looks like all
      users of simple_write_end() are memory-bound pseudo filesystems, who
      could careless about mark_inode_dirty(). I might submit a
      warning-comment patch to simple_write_end() in future.
      
      CC: Stable <stable@kernel.org>
      Signed-off-by: NBoaz Harrosh <bharrosh@panasas.com>
      efd124b9