1. 23 Feb, 2004 13 commits
  2. 22 Feb, 2004 27 commits
    • Linus Torvalds's avatar
      Merge bk://kernel.bkbits.net/davem/bt-2.6 · 6e9aed30
      Linus Torvalds authored
      into ppc970.osdl.org:/home/torvalds/v2.5/linux
      6e9aed30
    • Benjamin Herrenschmidt's avatar
      [PATCH] Disable debugging verbosity in macio_asic.c · 484a1f96
      Benjamin Herrenschmidt authored
      This undef's DEBUG by default in macio_asic, this is now working fairly
      well, and the actual output isn't really useful anyway.
      484a1f96
    • Andrew Morton's avatar
      [PATCH] runtime PM deadlock fix · 34ea1ab2
      Andrew Morton authored
      From: Alexander Atanasov <alex@ssi.bg>
      
      dpm_runtime_suspend holds dpm_sem and calls dpm_runtime_resume which
      deadlocks.  Directly call runtime_resume instead.
      34ea1ab2
    • Andrew Morton's avatar
      [PATCH] Require GNU Make version 3.79.1 or later · ffaf2ab6
      Andrew Morton authored
      From: Adrian Bunk <bunk@fs.tum.de>
      
      GNU make 3.78 reproducible segfaults when building kernel 2.6.
      
      See http://marc.theaimsgroup.com/?l=linux-kernel&m=107333742902438&w=2
      
      Therefore, the minimum requirement for GNU make has to be raised in
      Documentation/Changes.
      
      GNU make 3.79.1 works.
      ffaf2ab6
    • Andrew Morton's avatar
      [PATCH] powernow-k8 frequency handling fix · e152aa13
      Andrew Morton authored
      From: Pavel Machek <pavel@ucw.cz>
      
      In 2.6.3, cleanups arrived, and they got test for invalid frequencies
      wrong.
      
      Only first frequency is allowed to be < FID_TABLE_BOTTOM, but due to
      bug it cleanups it allowed no frequencies < FID_TABLE_BOTTOM. This
      fixes it.
      e152aa13
    • Andrew Morton's avatar
      [PATCH] Fix fs/partitions/efi.c printk warnings · 24048086
      Andrew Morton authored
      Lots of these:
      
      fs/partitions/efi.c:387: warning: long unsigned int format, u64 arg (arg 2)
      fs/partitions/efi.c:387: warning: long unsigned int format, u64 arg (arg 3)
      fs/partitions/efi.c:387: warning: long unsigned int format, u64 arg (arg 2)
      fs/partitions/efi.c:387: warning: long unsigned int format, u64 arg (arg 3)
      fs/partitions/efi.c:395: warning: long unsigned int format, u64 arg (arg 2)
      fs/partitions/efi.c:395: warning: long unsigned int format, u64 arg (arg 3)
      
      because it is assuming that you can print a u64 with %ld on 64-bit machines.
      24048086
    • Andrew Morton's avatar
      [PATCH] Fix ISDN v.110. · 0579fac9
      Andrew Morton authored
      From: David Woodhouse <dwmw2@infradead.org>
      
      Now that we coalesce ACKs for outgoing packets, the v.110 code needs to
      look at the size it's given rather than assuming it'll get precisely one
      callback for each packet sent...
      0579fac9
    • Andrew Morton's avatar
      [PATCH] telephony: use kernel min/max · f532bdf6
      Andrew Morton authored
      From: "Randy.Dunlap" <rddunlap@osdl.org>
      
      From: Michael Veeck <michael.veeck@gmx.net>
      
      Removes unnecessary min/max macros and use kernel.h macros instead.
      f532bdf6
    • Andrew Morton's avatar
      [PATCH] janitor: media: use kernel min/max · da5f761d
      Andrew Morton authored
      From: "Randy.Dunlap" <rddunlap@osdl.org>
      
      From: Michael Veeck <michael.veeck@gmx.net>
      
      Remove unnecessary min/max macros and changes calls to use kernel.h macros
      instead.
      da5f761d
    • Andrew Morton's avatar
      [PATCH] From: "Randy.Dunlap" <rddunlap@osdl.org> · a30bfc8e
      Andrew Morton authored
      From: <WHarms@bfs.de>(Walter Harms)
      
      Hi list,
      while checking 2.6.1 for missing checks(). fs/jffs/inode-v23.c
      got overlooked somehow.
      
      This patch fixes:
      2 unguarded kmem_cache_create
      1 unguarded proc_mkdir
      a30bfc8e
    • Andrew Morton's avatar
      [PATCH] security oops fix · 8a65e057
      Andrew Morton authored
      From: Stephen Smalley <sds@epoch.ncsc.mil>
      
      Looking at d_splice_alias, it appears that the security_d_instantiate call
      in the first case (where it ends up moving an entry in place of the given
      dentry) should be passing 'new' rather than 'dentry' to ensure that the
      passed dentry is associated with the inode.  This patch should fix the
      problem.
      
      (Addresses bugzilla #2153)
      8a65e057
    • Andrew Morton's avatar
      [PATCH] ext3: fix scheduling-in-spinlock bug · e84f0355
      Andrew Morton authored
      ext3_error() sleeps, so don't call it with the lock held.
      e84f0355
    • Andrew Morton's avatar
      [PATCH] Another x86-64 fix for problems from the recent merge · e4c77679
      Andrew Morton authored
      From: Andi Kleen <ak@suse.de>,
            From Suresh.B.Siddha
      
      Fix another bug caused by the recent IA32e merge.  The full L1 cache size
      padding of the GDT didn't work with smaller cache line sizes.  Just revert
      that.
      
      I must admit I still don't understand why it didn't work, but it's better
      to have a working system for now.
      e4c77679
    • Andrew Morton's avatar
      [PATCH] Fixes to CodingStyle · 5f029549
      Andrew Morton authored
      From: Xose Vazquez Perez <xose@wanadoo.es>
      
      Even master's books bring errors :-).  URL has the errata and more
      information about the books
      5f029549
    • Andrew Morton's avatar
      [PATCH] mtrr: init section usage · 66c7f95a
      Andrew Morton authored
      From: "Randy.Dunlap" <rddunlap@osdl.org>
      
      This patch tries to clean up init section usage in
      arch/i386/kernel/cpu/mtrr/*.c.
      66c7f95a
    • Andrew Morton's avatar
      [PATCH] IPMI warning fixes · db9a7868
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      When compiling the IPMI drivers on m68k, I needed a few more includes:
      
        - <asm/irq.h> (for disable_irq_nosync() and enable_irq())
      
        - <linux/types.h> (for size_t)
      
        - <asm/system.h> (for printk())
      db9a7868
    • Andrew Morton's avatar
      [PATCH] cleanup condsyscall for sysv ipc · ae0ecb66
      Andrew Morton authored
      From: Manfred Spraul <manfred@colorfullife.com>
      
      Attached is a patch that replaces the #ifndef CONFIG_SYSV syscall stubs
      with cond_syscall stubs.
      ae0ecb66
    • Andrew Morton's avatar
      [PATCH] nbd: remove PARANOIA and other cleanups · 4d273aae
      Andrew Morton authored
      From: Paul Clements <Paul.Clements@SteelEye.com>
      
      This patch removes the PARANOIA define (it was always defined anyway).  It
      also removes the requests_in/out counters (which weren't always accurate,
      and are superfluous anyway, since the block layer keeps its own in_flight
      counter).  Also some minor cleanup of comments.
      4d273aae
    • Andrew Morton's avatar
      [PATCH] nbd: fix set_capacity call · 07172aea
      Andrew Morton authored
      From: Paul Clements <Paul.Clements@SteelEye.com>
      
      This patch fixes the initial set_capacity call so that it matches nbd's
      internal device size (nbd_device->bytesize).
      07172aea
    • Andrew Morton's avatar
      [PATCH] Kconfig help: dm-crypto && cryptoloop · 902415ed
      Andrew Morton authored
      From: bert hubert <ahu@ds9a.nl>
      
      Current bitkeeper features a cryptoloop which is not safe for journaled
      file systems and also a Device Mapper target which is.  The patch below
      updates Kconfig to that effect.
      902415ed
    • Andrew Morton's avatar
      [PATCH] add range checking to sys_sysctl() · df84e5eb
      Andrew Morton authored
      If you pass a huge nlen value into sys_sysctl() it will loop for hours
      printing billions of question marks, so range-check the arguments.
      
      Also, remove the code which informs the user that the sysctl is obsolete: it
      allows unprivileged users to spam the logs.
      df84e5eb
    • Andrew Morton's avatar
      [PATCH] m68k: M68k core spelling · 93d11872
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      M68k core spelling fix (from Michael Hayes)
      93d11872
    • Andrew Morton's avatar
      [PATCH] m68k: Dummy dma mapping · cb74ba0d
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      Add a dummy <asm-generic/dma-mapping-broken.h> for systems that don't support
      the new DMA API, and make m68k use it if !CONFIG_PCI
      cb74ba0d
    • Andrew Morton's avatar
      [PATCH] m68k: Mac IOP spelling · 297b5efb
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      Mac IOP spelling fix (from Matthias Urlichs)
      297b5efb
    • Andrew Morton's avatar
      [PATCH] m68k: M68k FPU emu broken link · 8d7693f8
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      M68k FPU emu: Remove reference to non-existing website
      8d7693f8
    • Andrew Morton's avatar
      [PATCH] m68k: M68k cmpxchg · 83e6a186
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      M68k: Add missing implementation of cmpxchg() (from Andreas Schwab, Roman
      Zippel and me)
      83e6a186
    • Andrew Morton's avatar
      [PATCH] m68k: M68k call trace output · 8c6184f6
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      M68k: Improve formatting of call trace output (from Matthias Urlichs)
      8c6184f6