1. 21 1月, 2011 5 次提交
    • L
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes · b06ae1ea
      Linus Torvalds 提交于
      * git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes:
        GFS2: Fix error path in gfs2_lookup_by_inum()
        GFS2: remove iopen glocks from cache on failed deletes
      b06ae1ea
    • L
      Merge branch 'acpica' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6 · e589501c
      Linus Torvalds 提交于
      * 'acpica' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6:
        ACPICA: Update version to 20110112
        ACPICA: Update all ACPICA copyrights and signons to 2011
        ACPICA: Fix issues/fault with automatic "serialized" method support
        ACPICA: Debugger: Lock namespace for duration of a namespace dump
        ACPICA: Fix namespace race condition
        ACPICA: Fix memory leak in acpi_ev_asynch_execute_gpe_method().
      e589501c
    • L
      Fix broken "pipe: use event aware wakeups" optimization · 28e58ee8
      Linus Torvalds 提交于
      Commit e462c448 ("pipe: use event aware wakeups") optimized the pipe
      event wakeup calls to avoid wakeups if the events do not match the
      requested set.
      
      However, the optimization was buggy, in that it didn't actually use the
      correct sets for the events: when we make room for more data to be
      written, the pipe poll() routine will return both the POLLOUT _and_
      POLLWRNORM bits.  Similarly for read.
      
      And most critically, when a pipe is released, that will potentially
      result in POLLHUP|POLLERR (depending on whether it was the last reader
      or writer), not just the regular POLLIN|POLLOUT.
      
      This bug showed itself as a hung gnome-screensaver-dialog process, stuck
      forever (or at least until it was poked by a signal or by being traced)
      in a poll() system call.
      
      Cc: Davide Libenzi <davidel@xmailserver.org>
      Cc: David S. Miller <davem@davemloft.net>
      Cc: Eric Dumazet <eric.dumazet@gmail.com>
      Cc: Jens Axboe <axboe@kernel.dk>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      28e58ee8
    • L
      i915: Fix i915 suspend delay · d7b9935a
      Linus Torvalds 提交于
      During system suspend, the "wait for ring buffer to empty" loop would
      always time out after three seconds, because the faster cached ring
      buffer head read would always return zero.  Force the slow-and-careful
      PIO read on all but the first iterations of the loop to fix it.
      
      This also removes the unused (and useless) 'actual_head' variable that
      tried to approximate doing this, but did it incorrectly.
      
      Cc: Chris Wilson <chris@chris-wilson.co.uk>
      Cc: Rafael J. Wysocki <rjw@sisk.pl>
      Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
      Cc: Dave Airlie <airlied@linux.ie>
      Cc: DRI mailing list <dri-devel@lists.freedesktop.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      d7b9935a
    • L
      ACPI / Battery: remove battery refresh on resume · b23fffd7
      Linus Torvalds 提交于
      This partially reverts commit da8aeb92
      ("ACPI / Battery: Update information on info notification and resume"),
      which causes a hang on resume on at least some machines.
      
      This bug was bisected on an ASUS EeePC 901, which hangs at resume time
      if we do that "acpi_battery_refresh(battery)" in the battery resume
      function.
      
      Rafael suspects we'll still need to refresh the sysfs files upon resume,
      but that that can be done from a PM notifier (that will run after
      thawing user space).
      Bisected-and-tested-by: NLinus Torvalds <torvalds@linux-foundation.org>
      Cc: Matthew Garrett <mjg@redhat.com>
      Cc: Len Brown <len.brown@intel.com>
      Acked-by: NRafael J. Wysocki <rjw@sisk.pl>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      b23fffd7
  2. 20 1月, 2011 5 次提交
  3. 19 1月, 2011 30 次提交