1. 22 Mar, 2004 2 commits
  2. 21 Mar, 2004 1 commit
  3. 20 Mar, 2004 2 commits
  4. 18 Mar, 2004 1 commit
  5. 16 Mar, 2004 1 commit
  6. 12 Mar, 2004 3 commits
    • Len Brown's avatar
      [ACPI] add boot parameters "acpi_osi=" and "acpi_serialize" · fea5b72f
      Len Brown authored
        acpi_osi= will disable the _OSI method -- which by default
      	tells the BIOS to behave as if Windows is the OS.
        acpi_serialize is for debugging AE_ALREADY_EXISTS failures
      fea5b72f
    • Len Brown's avatar
      [ACPI] ACPICA 20040311 from Bob Moore · 954c9189
      Len Brown authored
      Fixed a problem where errors occurring during the parse phase of control
      method execution did not abort cleanly.  For example, objects created
      and installed in the namespace were not deleted.  This caused all
      subsequent invocations of the method to return the AE_ALREADY_EXISTS
      exception.
      
      Implemented a mechanism to force a control method to "Serialized"
      execution if the method attempts to create namespace objects.
      (The root of the AE_ALREADY_EXISTS problem.)
      
      Implemented support for the predefined _OSI "internal" control method.
      Initial supported strings are "Linux", "Windows 2000", "Windows 2001",
      and "Windows 2001.1", and can be easily upgraded for new strings as
      necessary.  This feature allows Linux to execute
      the fully tested, "Windows" code path through the ASL code
      
      Global Lock Support:  Now allows multiple acquires and releases with any
      internal thread.  Removed concept of "owning thread" for this special
      mutex.
      
      Fixed two functions that were inappropriately declaring large objects on
      the CPU stack: ps_parse_loop() and ns_evaluate_relative().
      Reduces the stack usage during method execution considerably.
      
      Fixed a problem in the ACPI 2.0 FACS descriptor (actbl2.h) where the
      S4Bios_f field was incorrectly defined as UINT32 instead of UINT32_BIT.
      
      Fixed a problem where acpi_ev_gpe_detect() would fault
      if there were no GPEs defined on the machine.
      
      Implemented two runtime options:  One to force all control method
      execution to "Serialized" to mimic Windows behavior, another to disable
      _OSI support if it causes problems on a given machine.
      954c9189
    • Len Brown's avatar
  7. 10 Mar, 2004 15 commits
  8. 09 Mar, 2004 15 commits
    • Petr Vandrovec's avatar
      [PATCH] ncpfs fails to correctly retry requests on timeout · d4aecd1a
      Petr Vandrovec authored
      sock_sendmsg() modifies iovec passed to it - it sets all length members of
      iovec array to zero on success transmission (and even on failed if it
      fails after iovec copy, but...) and advances pointers to point at the end
      of buffers used. This has an unfortunate effect that ncpfs's retry on
      failure does not work for IPX/UDP connections - kernel refused to do anything
      because length from iovec was 0 while length passed to sock_sendmsg() was
      correct.
      
      This simple fix gets rid of a problem by creating temporary iovec copy, which can
      sock_sendmsg destroy if it has such wish.
      d4aecd1a
    • Gerd Knorr's avatar
      [PATCH] bttv input update · 88593e9d
      Gerd Knorr authored
      This adds infrared remote support for a few more bt878-based TV cards.
      88593e9d
    • Jens Axboe's avatar
      [PATCH] set request fastfail bit correctly · c5046934
      Jens Axboe authored
      From Mike Christie <michaelc@cs.wisc.edu>
      
      The first three bio and request flags are no longer identical.  The bio
      barrier and rw flags are getting set in __make_request and get_request
      respectively, and failfast is getting left out.
      
      This sets the request's failfast flag in __make_request when the bio's
      flag is set.
      c5046934
    • Anton Blanchard's avatar
      [PATCH] ppc64 POWER3 segment table fix · c5e296f5
      Anton Blanchard authored
      The ppc64 fix last week (enforcing permissions on the kernel when
      accessing userspace pages) uncovered a bug on POWER3/RS64. We werent
      zeroing the segment table entry before overwriting it and it was possible
      for the ks bit to be set on a kernel segment.
      
      The VSID mask was also changed to match reality (we only use 13 bits).
      c5e296f5
    • Linus Torvalds's avatar
      Merge bk://are.twiddle.net/axp-2.6 · 0b5403cf
      Linus Torvalds authored
      into ppc970.osdl.org:/home/torvalds/v2.5/linux
      0b5403cf
    • Richard Henderson's avatar
      [ALPHA] Add stat64 syscalls. · bb60cd07
      Richard Henderson authored
      bb60cd07
    • Benjamin Herrenschmidt's avatar
      [PATCH] ppc64: Let OF initialize all displays in the system · a3c454e1
      Benjamin Herrenschmidt authored
      This patch reworks the early boot calls to OF to initialize displays.
      
      All present displays are now initialized in reverse order so the
      OF console stays on the first one. Initializing them all is necessary
      for dual head configurations as we need OF driver to properly setup
      the secondary TMDS of the video card, XFree isn't able to do that
      currently
      a3c454e1
    • Benjamin Herrenschmidt's avatar
      [PATCH] ppc64: Fix occasional crash at boot in OF interface · 8661a5ff
      Benjamin Herrenschmidt authored
      The assembly code used to callback into Open Firmware client
      interface in 32 bits mode used to backup the stack pointer in
      the SPRG2 register.
      
      That upsets Apple's implementation of Open Firmware significantly
      and maybe others, causing them to crash in _some_ operations,
      apparently the trigger is to cause a segment or hash table
      fault, typically happens when letting that code initialize the
      second display.
      
      This patch fixes it, along with other cleanups of that asm code,
      it did unnecessary register restores and backing up the stack
      pointer is actually useless anyway.
      8661a5ff
    • Benjamin Herrenschmidt's avatar
      [PATCH] Fix PCI<->OF matching on G5 AGP bus · 6fb338db
      Benjamin Herrenschmidt authored
      Strangely, I though I fixed that a long time ago, but it was still
      broken in the current tree...
      
      Drivers like radeonfb fail to find the OF device matching a given PCI
      device on the G5 AGP bus because of some bus renumbering tricks.  This
      patch fixes the problem by fixing the bus numbers in the OF node.  This
      corrects radeonfb and other drivers looking for EDID / PLL datas in the
      OF node.
      6fb338db
    • Linus Torvalds's avatar
      Merge bk://kernel.bkbits.net/davem/net-2.6 · 98b29a73
      Linus Torvalds authored
      into ppc970.osdl.org:/home/torvalds/v2.5/linux
      98b29a73
    • Linus Torvalds's avatar
      Make sure to include syscalls.h to get proper prototypes. · 6689319e
      Linus Torvalds authored
      Especially with REGPARM these things actually matter.
      6689319e
    • Linus Torvalds's avatar
      Linux 2.6.4-rc3 · 98d27022
      Linus Torvalds authored
      98d27022
    • Benjamin Herrenschmidt's avatar
      [PATCH] pmac_zilog 2/2 : Fix various bugs · 9e9d9f69
      Benjamin Herrenschmidt authored
      This fixes possible lockups in pmac_zilog when beeing flooded with
      incoming data (not that other serial drivers share the same race, I told
      Russel about it already).  It also fixes some SCC initialization
      problems, add some PM callback, and fix the irda setup code.
      9e9d9f69
    • Benjamin Herrenschmidt's avatar
      [PATCH] pmac_zillog 1/2 : Cosmetic only, change "up" to "uap" to avoid collision · 2881a889
      Benjamin Herrenschmidt authored
      This does cosmetic changes the pmac_zilog, changing the use of "up" as
      an identifier in favor "uap" to avoid collision with semaphores, use
      proper debug macros, and a few other cosmetic bits.
      2881a889
    • Andrew Morton's avatar
      [PATCH] Print function names during do_initcall debugging · ad81c27c
      Andrew Morton authored
      From Jan-Benedict Glaw <jbglaw@lug-owl.de>
      ad81c27c