1. 09 10月, 2009 6 次提交
    • E
      fix readahead calculations in xfs_dir2_leaf_getdents() · 8e69ce14
      Eric Sandeen 提交于
      This is for bug #850,
      http://oss.sgi.com/bugzilla/show_bug.cgi?id=850
      XFS file system segfaults , repeatedly and 100% reproducable in 2.6.30 , 2.6.31
      
      The above only showed up on a CONFIG_XFS_DEBUG=y kernel, because
      xfs_bmapi() ASSERTs that it has been asked for at least one map,
      
      and it was getting 0.
      
      The root cause is that our guesstimated "bufsize" from xfs_file_readdir
      was fairly small, and the
      
      		bufsize -= length;
      
      in the loop was going negative - except bufsize is a size_t, so it
      was wrapping to a very large number.
      
      Then when we did
      		ra_want = howmany(bufsize + mp->m_dirblksize,
      				  mp->m_sb.sb_blocksize) - 1;
      
      with that very large number, the (int) ra_want was coming out
      negative, and a subsequent compare:
      
      		if (1 + ra_want > map_blocks ...
      
      was coming out -true- (negative int compare w/ uint) and we went
      back to xfs_bmapi() for more, even though we did not need more,
      and asked for 0 maps, and hit the ASSERT.
      
      We have kind of a type mess here, but just keeping bufsize from
      going negative is probably sufficient to avoid the problem.
      Signed-off-by: NEric Sandeen <sandeen@sandeen.net>
      Reviewed-by: NChristoph Hellwig <hch@lst.de>
      Reviewed-by: NAlex Elder <aelder@sgi.com>
      Signed-off-by: NAlex Elder <aelder@sgi.com>
      8e69ce14
    • D
      xfs: make sure xfs_sync_fsdata covers the log · dce5065a
      Dave Chinner 提交于
      We want to always cover the log after writing out the superblock, and
      in case of a synchronous writeout make sure we actually wait for the
      log to be covered.  That way a filesystem that has been sync()ed can
      be considered clean by log recovery.
      Signed-off-by: NDave Chinner <david@fromorbit.com>
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Reviewed-by: NEric Sandeen <sandeen@sandeen.net>
      Reviewed-by: NAlex Elder <aelder@sgi.com>
      Signed-off-by: NAlex Elder <aelder@sgi.com>
      dce5065a
    • D
      xfs: mark inodes dirty before issuing I/O · 932640e8
      Dave Chinner 提交于
      To make sure they get properly waited on in sync when I/O is in flight and
      we latter need to update the inode size.  Requires a new helper to check if an
      ioend structure is beyond the current EOF.
      Signed-off-by: NDave Chinner <david@fromorbit.com>
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Reviewed-by: NAlex Elder <aelder@sgi.com>
      Signed-off-by: NAlex Elder <aelder@sgi.com>
      932640e8
    • C
      xfs: cleanup ->sync_fs · 69961a26
      Christoph Hellwig 提交于
      Sort out ->sync_fs to not perform a superblock writeback for the wait = 0 case
      as that is just an optional first pass and the superblock will be written back
      properly in the next call with wait = 1.  Instead perform an opportunistic
      quota writeback to have less work later.  Also remove the freeze special case
      as we do a proper wait = 1 call in the freeze code anyway.
      
      Also rename the function to xfs_fs_sync_fs to match the normal naming
      convention, update comments and avoid calling into the laptop_mode logic on
      an error.
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Reviewed-by: NAlex Elder <aelder@sgi.com>
      Signed-off-by: NAlex Elder <aelder@sgi.com>
      69961a26
    • D
      xfs: fix xfs_quiesce_data · c90b07e8
      Dave Chinner 提交于
      We need to do a synchronous xfs_sync_fsdata to make sure the superblock
      actually is on disk when we return.
      
      Also remove SYNC_BDFLUSH flag to xfs_sync_inodes because that particular
      flag is never checked.
      
      Move xfs_filestream_flush call later to only release inodes after they
      have been written out.
      Signed-off-by: NDave Chinner <david@fromorbit.com>
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Reviewed-by: NAlex Elder <aelder@sgi.com>
      Signed-off-by: NAlex Elder <aelder@sgi.com>
      c90b07e8
    • C
      xfs: implement ->dirty_inode to fix timestamp handling · f9581b14
      Christoph Hellwig 提交于
      This is picking up on Felix's repost of Dave's patch to implement a
      .dirty_inode method.  We really need this notification because
      the VFS keeps writing directly into the inode structure instead
      of going through methods to update this state.  In addition to
      the long-known atime issue we now also have a caller in VM code
      that updates c/mtime that way for shared writeable mmaps.  And
      I found another one that no one has noticed in practice in the FIFO
      code.
      
      So implement ->dirty_inode to set i_update_core whenever the
      inode gets externally dirtied, and switch the c/mtime handling to
      the same scheme we already use for atime (always picking up
      the value from the Linux inode).
      
      Note that this patch also removes the xfs_synchronize_atime call
      in xfs_reclaim it was superflous as we already synchronize the time
      when writing the inode via the log (xfs_inode_item_format) or the
      normal buffers (xfs_iflush_int).
      
      In addition also remove the I_CLEAR check before copying the Linux
      timestamps - now that we always have the Linux inode available
      we can always use the timestamps in it.
      
      Also switch to just using file_update_time for regular reads/writes -
      that will get us all optimization done to it for free and make
      sure we notice early when it breaks.
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Reviewed-by: NFelix Blyakher <felixb@sgi.com>
      Reviewed-by: NAlex Elder <aelder@sgi.com>
      Signed-off-by: NAlex Elder <aelder@sgi.com>
      f9581b14
  2. 16 9月, 2009 2 次提交
  3. 11 9月, 2009 2 次提交
  4. 10 9月, 2009 2 次提交
  5. 09 9月, 2009 3 次提交
    • E
      aoe: allocate unused request_queue for sysfs · 7135a71b
      Ed Cashin 提交于
      Andy Whitcroft reported an oops in aoe triggered by use of an
      incorrectly initialised request_queue object:
      
        [ 2645.959090] kobject '<NULL>' (ffff880059ca22c0): tried to add
      		an uninitialized object, something is seriously wrong.
        [ 2645.959104] Pid: 6, comm: events/0 Not tainted 2.6.31-5-generic #24-Ubuntu
        [ 2645.959107] Call Trace:
        [ 2645.959139] [<ffffffff8126ca2f>] kobject_add+0x5f/0x70
        [ 2645.959151] [<ffffffff8125b4ab>] blk_register_queue+0x8b/0xf0
        [ 2645.959155] [<ffffffff8126043f>] add_disk+0x8f/0x160
        [ 2645.959161] [<ffffffffa01673c4>] aoeblk_gdalloc+0x164/0x1c0 [aoe]
      
      The request queue of an aoe device is not used but can be allocated in
      code that does not sleep.
      
      Bruno bisected this regression down to
      
        cd43e26f
      
        block: Expose stacked device queues in sysfs
      
      "This seems to generate /sys/block/$device/queue and its contents for
       everyone who is using queues, not just for those queues that have a
       non-NULL queue->request_fn."
      
      Addresses http://bugs.launchpad.net/bugs/410198
      Addresses http://bugzilla.kernel.org/show_bug.cgi?id=13942
      
      Note that embedding a queue inside another object has always been
      an illegal construct, since the queues are reference counted and
      must persist until the last reference is dropped. So aoe was
      always buggy in this respect (Jens).
      Signed-off-by: NEd Cashin <ecashin@coraid.com>
      Cc: Andy Whitcroft <apw@canonical.com>
      Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
      Cc: Bruno Premont <bonbons@linux-vserver.org>
      Cc: Martin K. Petersen <martin.petersen@oracle.com>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NJens Axboe <jens.axboe@oracle.com>
      7135a71b
    • L
      i915: disable interrupts before tearing down GEM state · e6890f6f
      Linus Torvalds 提交于
      Reinette Chatre reports a frozen system (with blinking keyboard LEDs)
      when switching from graphics mode to the text console, or when
      suspending (which does the same thing). With netconsole, the oops
      turned out to be
      
      	BUG: unable to handle kernel NULL pointer dereference at 0000000000000084
      	IP: [<ffffffffa03ecaab>] i915_driver_irq_handler+0x26b/0xd20 [i915]
      
      and it's due to the i915_gem.c code doing drm_irq_uninstall() after
      having done i915_gem_idle(). And the i915_gem_idle() path will do
      
        i915_gem_idle() ->
          i915_gem_cleanup_ringbuffer() ->
            i915_gem_cleanup_hws() ->
              dev_priv->hw_status_page = NULL;
      
      but if an i915 interrupt comes in after this stage, it may want to
      access that hw_status_page, and gets the above NULL pointer dereference.
      
      And since the NULL pointer dereference happens from within an interrupt,
      and with the screen still in graphics mode, the common end result is
      simply a silently hung machine.
      
      Fix it by simply uninstalling the irq handler before idling rather than
      after. Fixes
      
          http://bugzilla.kernel.org/show_bug.cgi?id=13819Reported-and-tested-by: NReinette Chatre <reinette.chatre@intel.com>
      Acked-by: NJesse Barnes <jbarnes@virtuousgeek.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      e6890f6f
    • Z
      drm/i915: fix mask bits setting · 7c8460db
      Zhenyu Wang 提交于
      eDP is exclusive connector too, and add missing crtc_mask
      setting for TV.
      
      This fixes
      
      	http://bugzilla.kernel.org/show_bug.cgi?id=14139Signed-off-by: NZhenyu Wang <zhenyuw@linux.intel.com>
      Reported-and-tested-by: NCarlos R. Mafra <crmafra2@gmail.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      7c8460db
  6. 08 9月, 2009 5 次提交
  7. 07 9月, 2009 2 次提交
  8. 06 9月, 2009 18 次提交