1. 30 Jan, 2005 3 commits
  2. 28 Jan, 2005 1 commit
  3. 27 Jan, 2005 4 commits
  4. 28 Jan, 2005 1 commit
  5. 27 Jan, 2005 16 commits
  6. 26 Jan, 2005 4 commits
  7. 25 Jan, 2005 11 commits
    • Nicolas Pitre's avatar
      [ARM PATCH] 2435/1: platform data for audio on Mainstone · e2884f24
      Nicolas Pitre authored
      Patch from Nicolas Pitre
      
      This enables audio on Mainstone with the ALSA PXA2xx AC97 driver.
      
      Signed-off-by: Nicolas Pitre
      Signed-off-by: Russell King
      e2884f24
    • Ben Dooks's avatar
      [ARM PATCH] 2433/1: debug-macro.S split - fix header filename · 89c6714c
      Ben Dooks authored
      Patch from Ben Dooks
      
      All the headers refer to debug-armv.S, when they where split from
      debug.S
      
      Signed-off-by: Ben Dooks
      Signed-off-by: Russell King
      89c6714c
    • Ben Dooks's avatar
      [ARM PATCH] 2432/1: include/asm-arm/bitops.h - missing const from find · 6016c655
      Ben Dooks authored
      Patch from Ben Dooks
      
      the calls _find_first_zero_bit_be() and _find_next_zero_bit_be()
      are missing const from the pointer argument passed in, causing
      several build warnings when building an ARM kernel in big-endian
      mode.
      
      Signed-off-by: Ben Dooks
      Signed-off-by: Russell King
      6016c655
    • Len Brown's avatar
      Merge intel.com:/home/lenb/src/26-stable-dev · f4af4dd1
      Len Brown authored
      into intel.com:/home/lenb/src/26-latest-dev
      f4af4dd1
    • Len Brown's avatar
      [ACPI] ACPICA 20050125 from Bob Moore · 2a539154
      Len Brown authored
      Fixed a recently introduced problem with the Global
      Lock where the underlying semaphore was not created.
      This problem was introduced in version 20050114, and
      caused an AE_AML_NO_OPERAND exception during an Acquire()
      operation on _GL.
      
      The local object cache is now optional, and is disabled
      by default.  #define ACPI_ENABLE_OBJECT_CACHE to enable
      the local cache.
      
      Fixed an issue in the internal function
      acpi_ut_evaluate_object() concerning the optional "implicit
      return" support where an error was returned if no return
      object was expected, but one was implicitly returned. AE_OK
      is now returned in this case and the implicitly returned
      object is deleted.  acpi_ut_evaluate_object() is only
      occasionally used, and only to execute reserved methods
      such as _STA and _INI where the return type is known
      up front.
      
      Fixed a few issues with the internal convert-to-integer
      code. It now returns an error if an attempt is made to
      convert a null string, a string of only blanks/tabs, or a
      zero-length buffer. This affects both implicit conversion
      and explicit conversion via the ToInteger() operator.
      
      The internal debug code in acpi_ut_acquire_mutex()
      has been commented out. It is not needed for normal
      operation and should increase the performance of the entire
      subsystem. The code remains in case it is needed for debug
      purposes again.
      acpica-unix-20050125.patch
      2a539154
    • Thomas Graf's avatar
    • James Bottomley's avatar
      [PATCH] fix broken cross compiles · 0bfe221f
      James Bottomley authored
      The change to kbuild to use -isystem `gcc -print-file-name=include`
      broke our parisc crosscompile (and presumably everyone else's).
      
      The reason is that you have a := in the NOSTDINC_FLAGS rule, which is
      evaluated in situ (i.e.  before we've had a chance to set CROSSCOMPILE
      on CC) so the gcc include path is actually the native one not the
      crosscompiler one.  On parisc this causes us to be unable to handle
      _builtin_va functions, but I bet there are a heap of other problems. 
      Acked-by: default avatarSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      0bfe221f
    • Herbert Xu's avatar
      [XFRM]: Probe selected algorithm only. · d113f0f0
      Herbert Xu authored
      This patch removes an annoying problem in xfrm_user.  As it is every
      time an SA is added it probes every known algorithm in the universe.
      Now if they all existed it would be OK.  However, for the ones which
      don't actually exist this causes multiple /sbin/modprobe processes to
      be spawned which slows the system down when you're adding hundreds of
      SAs.
      
      Since we know the type of algorithm required when we're adding a new
      SA, we can get away with only probing the selected algorithms.  This
      is what the following patch does for xfrm_user.
      Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
      Signed-off-by: default avatarJames Morris <jmorris@redhat.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      d113f0f0
    • David S. Miller's avatar
      Merge http://linux-mh.bkbits.net/bluetooth-2.6 · 7a303cfd
      David S. Miller authored
      into nuts.davemloft.net:/disk1/BK/net-2.6
      7a303cfd
    • Andrew Morton's avatar
      [TUN/TAP]: Add missing trans_start and last_rx setting. · b8dcfacc
      Andrew Morton authored
      But as stated in bonding.txt, the ARP monitor requires the underlying
      driver to update dev->trans_start and dev->last_rx.
      
      The patch below adds the required functionality to the TUN/TAP driver.
      Please test if this helps in your case.
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      b8dcfacc
    • Andrew Morton's avatar
      [NET]: netpoll: Fix NAPI polling race on SMP · e1809d4f
      Andrew Morton authored
      From: Matt Mackall <mpm@selenic.com>
      
      This avoids a nasty NAPI race by checking that work was actually scheduled
      for the CPU netpoll is running on and pulls the NAPI-specific code out into
      a separate function.
      
      Original idea from Jeff Moyer
      Tested by Andrew Tridgell
      Signed-off-by: default avatarMatt Mackall <mpm@selenic.com>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      e1809d4f