1. 26 Feb, 2004 2 commits
    • Dave Jones's avatar
      [CPUFREQ] scaling_available_frequencies work for remaining x86 drivers. · 42124408
      Dave Jones authored
      Export scaling_available_frequencies on the remaining
      x86 freq_table-based cpufreq drivers. powernow-k7, acpi and speedstep-centrino
      are already queued.
                                                                                                             
      Please note that this cannot be done in the cpufreq core as the cpufreq core
      tries very hard to be independent of the freq_table helpers. 
      42124408
    • Dave Jones's avatar
      [CPUFREQ] Export powernow-k7 scaling frequencies · a553f9a7
      Dave Jones authored
      From: Kronos <kronos at kronoz.cjb.net>
       
      The following patch make powernow-k7.c export supported frequencies via
      sysfs. I'm trying to write a scaling deamon and I need to know them.
      a553f9a7
  2. 24 Feb, 2004 3 commits
  3. 23 Feb, 2004 24 commits
  4. 22 Feb, 2004 11 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