1. 16 Feb, 2003 1 commit
    • Russell King's avatar
      [ARM] Update wdt285 and wdt977 watchdog drivers · adae0c4e
      Russell King authored
      General updates to these two watchdog drivers, including:
      - converting initialisers to C99 syntax
      - correcting module descriptions
      - ensuring private symbols are declared static
      - ensuring correct options are reported in the watchdog_info structure
      - ensuring we use the right clock value for calculating timeouts
      - ensuring failure cleanup paths are properly implemented
      - don't use MOD_{INC,DEC}_USE_COUNT
      adae0c4e
  2. 15 Feb, 2003 3 commits
  3. 13 Feb, 2003 1 commit
  4. 12 Feb, 2003 33 commits
    • Russell King's avatar
      [ARM PATCH] 1380/1: Big-Endian support for jiffies · e4923829
      Russell King authored
      Patch from Deepak Saxena
      
      jiffies is defined as pointing to jiffies_64 for backwards comptability (I think, not 100% sure why we don't just use jiffies_64 everywhere?). On BE systems, we need to point to the upper 4 bytes of jiffies_64 or we will never get past calibrate_delay. This is what is done in PPC, SH, and other big endian architectures.
      e4923829
    • Andrew Morton's avatar
      [PATCH] printk size_t qualifier confusion · 7f939798
      Andrew Morton authored
      My printf manpage says:
      
             z      A  following  integer  conversion  corresponds to a
                    size_t or ssize_t argument. (Linux libc5 has Z with
                    this meaning. Don't use it.)
      
      And the opengroup spec says
      
      z Specifies that a following d , i , o , u , x , or X conversion specifier
        applies to a size_t or the corresponding signed integer type argument; or
        that a following n conversion specifier applies to a pointer to a signed
        integer type corresponding to a size_t argument.
      
      
      yet our vsnprintf implementation has
      
      				/* 'z' support added 23/7/1999 S.H.    */
      				/* 'z' changed to 'Z' --davidm 1/25/99 */
      
      
      I guess the path of least surprise is to support both.  gcc-3.2.1 doesn't
        seem to care.
      7f939798
    • Andrew Morton's avatar
      [PATCH] fix adaptec diagnostics for ppc64 · 61b8dae6
      Andrew Morton authored
      The return type of sizeof() is size_t.  On many architectrues size_t is
      unsigned long, and may not be printed with %d.  Use %Zu instead.
      61b8dae6
    • Andrew Morton's avatar
      [PATCH] u14-34f fix · 758d4c33
      Andrew Morton authored
      Need to reenable interrupts around the call to scsi_register(), which blocks.
      758d4c33
    • Andrew Morton's avatar
      [PATCH] MAP_FIXED|MAP_ANON crash fix · a738f561
      Andrew Morton authored
      An anonymous fixed mmap with CONFIG_HUGETLB_PAGE=y will dereference NULL.  We
      recur into the pagefault handler with mmap_sem held and lock up.
      a738f561
    • Andrew Morton's avatar
      [PATCH] epoll timeout and syscall return types · e19690cd
      Andrew Morton authored
      Patch from Davide Libenzi <davidel@xmailserver.org>
      
      Changes :
       - Timeout overflow check
       - Ceil()ing of ms->jif conversion
       - Syscalls return type int->long
      e19690cd
    • Andrew Morton's avatar
      [PATCH] OSS CS4232 locking fixes · 2b8a659c
      Andrew Morton authored
      Patch from: Peter Waechtler <pwaechtler@mac.com>
      
      Addresses BUGME bug #331.  "OSS CS4232 nasty spinlock printks on boot"
      
      The locking in some OSS modules is really lousy.
      Because save_flags/cli/restore_flags could be used recursivly - the
      programmers pushed the locking too far the lower level.
      
      Because on ISA cards the register sets are usually multiplexed
      you had to write to an address latch and then access the data port
      in an "atomic" manner.
      
      I suggest removing the locking from ad_read/ad_write +
      ad_{enter|leave}_MCE and clamping the locks wherever the functions
      are called. I hope the attached patch does that correctly.
      
      Yes, I don't like all the timeout loops while holding the locks:
      high chances that a cpu is spinning in interrupt context :(
      2b8a659c
    • Andrew Morton's avatar
      [PATCH] fix fadvise64() return type · f979631f
      Andrew Morton authored
      Patch from: David Mosberger <davidm@napali.hpl.hp.com>
      
      Please remember to declare the return-type of syscall stubs as "long".
      On 64-bit platforms, it's generally necessary to ensure that the
      entire 64-bit return value is valid (and can be checked against
      negative values).
      f979631f
    • Andrew Morton's avatar
      [PATCH] drivers/media/video/saa5249.c compile fix · 224ebf75
      Andrew Morton authored
      Patch from: Frank Davis <fdavis@si.rr.com>
      
      The following addresses bugzilla bug # 340.
      224ebf75
    • Andrew Morton's avatar
      [PATCH] Make drivers/media/video/saa7110.c compile · a8d41f1d
      Andrew Morton authored
      Patch from: Frank Davis <fdavis@si.rr.com>
      
      The following patch addresses bugzilla bug # 341.
      a8d41f1d
    • Andrew Morton's avatar
      [PATCH] Allow summit kernels to boot on normal systems · 553a2a58
      Andrew Morton authored
      Patch from: john stultz <johnstul@us.ibm.com>
      
      This patch simply fixes the summit subarch to allow summit kernels to
      boot on normal systems.
      553a2a58
    • Andrew Morton's avatar
      [PATCH] make drivers/net/arlan.c compile again · bd0bfea9
      Andrew Morton authored
      Someone typed `config' when they meant `conf'.
      
      Also fix a function-defined-but-not-used warning.
      bd0bfea9
    • Andrew Morton's avatar
      [PATCH] EATA driver fix · 030219ad
      Andrew Morton authored
      This driver is calling down into scsi_register with local interrupts
      disabled.  scsi_register performs blocking allocations, starts kernel
      threads, etc.  slab debugging gets offended by someone performing blocking
      operations with local interrupts disabled.
      030219ad
    • Andrew Morton's avatar
      [PATCH] jiffies wrap fixes · f9409775
      Andrew Morton authored
      Patch from Tim Schmielau <tim@physik3.uni-rostock.de>
      
      Converts many open-coded jiffy comparisons to use time_after/before/etc.
      f9409775
    • Andrew Morton's avatar
      [PATCH] sunrpc dcache cleanup · b72d7dcb
      Andrew Morton authored
      Patch from Dipankar Sarma <dipankar@in.ibm.com>
      
      All fs should be using dcache APIs to manipulate dcache hash lists.  This is
      in line with the dcache cleanup patch (dcache_rcu-1) from Maneesh that Linus
      accepted.  This seems like a reasonable cleanup.  One change though, we don't
      need to grab dcache_lock while deleting dentries from the private list and
      __d_drop() should suffice here.
      b72d7dcb
    • Andrew Morton's avatar
      [PATCH] make the adaptec driver compile · fec07c11
      Andrew Morton authored
      make the adaptec driver compile
      fec07c11
    • Andrew Morton's avatar
      [PATCH] disassociate_ctty SMP fix · 01ffc65c
      Andrew Morton authored
      Patch from Rik van Riel <riel@conectiva.com.br>
      
      the following patch, against today's BK tree, fixes a small
      SMP race in disassociate_ctty.  This function gets called
      from do_exit, without the BKL held.
      
      However, it sets the *tty variable before grabbing the bkl,
      then makes decisions on what the variable was set to before
      the lock was grabbed, despite the fact that another process
      could modify its ->tty pointer in this same function.
      01ffc65c
    • Andrew Morton's avatar
      [PATCH] provide uniproc write_trylock() · 40095952
      Andrew Morton authored
      Patch from Oleg Drokin <green@namesys.com>, Nikita Danilov <Nikita@Namesys.COM>
      
      There is no uniprocessor definition of _raw_write_trylock(), so
      write_trylock() doesn't work on UP.
      40095952
    • Andrew Morton's avatar
      [PATCH] fix drivers/scsi/st.c warning · 23a37cf9
      Andrew Morton authored
      kdev_t.value is not an int.  Code looks fishy.
      23a37cf9
    • Andrew Morton's avatar
      [PATCH] fs/reiserfs/hashes.c warning fix · 151ea8ec
      Andrew Morton authored
      printk needs kernel.h
      151ea8ec
    • Andrew Morton's avatar
      [PATCH] fix ppc64 nfs warning · f4a094d8
      Andrew Morton authored
      Don't assume that dev_t is unsigned.  Cast it.
      f4a094d8
    • Andrew Morton's avatar
      [PATCH] fix ppc64 wanings in fs/partitions/check.c · 999eb9ee
      Andrew Morton authored
      cast dev_t when printing
      999eb9ee
    • Andrew Morton's avatar
      [PATCH] kill some ppc64 warnings in knfsd · ebca3272
      Andrew Morton authored
      Don't assume that dev_t is an unsigned.  Cast it.
      ebca3272
    • Andrew Morton's avatar
      [PATCH] kill warning in vmscan.c · 8b7ee204
      Andrew Morton authored
      Make the "duplicate const" warning go away.  Arguably a compiler bug...
      8b7ee204
    • Andrew Morton's avatar
      [PATCH] genhd warnings fix · d89ff79e
      Andrew Morton authored
      I have a whole bunch of silly compile warning fixes here, arising from
      building the kernel for a 64-bit target.  Some are trivial, some are genuine
      printk bugs.
      
      assuming dev_t is unsigned generates a warning on ppc64.  Cast it.
      d89ff79e
    • Linus Torvalds's avatar
      Merge bk://linux-dj.bkbits.net/cpufreq · 7cc3ef9a
      Linus Torvalds authored
      into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
      7cc3ef9a
    • Dave Jones's avatar
      [CPUFREQ] fix longrun min/max confusion. · ce2d3f00
      Dave Jones authored
      ce2d3f00
    • Dave Jones's avatar
      [CPUFREQ] add support for cpufreq governors. · 2e585809
      Dave Jones authored
      More bits from Dominik.
      
      Most cpufreq drivers (in fact, all except one, longrun) or even most
      cpu frequency scaling algorithms only offer the CPU to be set to one
      frequency. In order to offer dynamic frequency scaling, the cpufreq
      core must be able to tell these drivers of a "target frequency". So
      these specific drivers will be transformed to offer a "->target"
      call instead of the existing "->setpolicy" call. For "longrun", all
      stays the same, though.
      
      How to decide what frequency within the CPUfreq policy should be used?
      That's done using "cpufreq governors". Two are already in this patch
      -- they're the already existing "powersave" and "performance" which
      set the frequency statically to the lowest or highest frequency,
      respectively. At least two more such governors will be ready for
      addition in the near future, but likely many more as there are various
      different theories and models about dynamic frequency scaling
      around. Using such a generic interface as cpufreq offers to scaling
      governors, these can be tested extensively, and the best one can be
      selected for each specific use.
      
      Basically, it's the following flow graph:
      
      CPU can be set to switch independetly    |         CPU can only be set
            within specific "limits"           |       to specific frequencies
      
                                       "CPUfreq policy"
                      consists of frequency limits (policy->{min,max})
                           and CPUfreq governor to be used
                               /                    \
                              /                      \
                             /                       the cpufreq governor decides
                            /                        (dynamically or statically)
                           /                         what target_freq to set within
                          /                          the limits of policy->{min,max}
                         /                                \
                        /                                  \
              Using the ->setpolicy call,              Using the ->target call,
                  the limits and the                    the frequency closest
                   "policy" is set.                     to target_freq is set.
                                                        It is assured that it
                                                        is within policy->{min,max}
      2e585809
    • Dave Jones's avatar
      [CPUFREQ] Properly set memory allocated by x86 cpufreq drivers to zero. · b846cb81
      Dave Jones authored
      From Dominik Brodowski
      b846cb81
    • Pavel Machek's avatar
      [PATCH] Fix stack handling in acpi_wakeup.S · 26a97bb1
      Pavel Machek authored
      This fixes stack handling in acpi_wakeup.S, and makes stack smaller so
      that wakeup code actually fits inside memory allocated for it. Plus
      someone renamed .L1432 to something meaningful.
      26a97bb1
    • Linus Torvalds's avatar
    • Ivan Kokshaysky's avatar
      [PATCH] alpha: Add missing sighand bits · fcb96784
      Ivan Kokshaysky authored
      fcb96784
    • Tomas Szepe's avatar
      [PATCH] export allow_signal() · 0cbea0df
      Tomas Szepe authored
      Export allow_signal().  It's needed by lockd, sunrpc and other modules.
      0cbea0df
  5. 11 Feb, 2003 2 commits
    • Russell King's avatar
      [ARM] Better handling of bad IRQ implementations. · ea28cbc6
      Russell King authored
      There are edge triggered interrupt controllers around where the
      "enable" control is before the edge detection.  This means that
      we must keep the interrupts enabled, even when disable_irq() is
      in effect, and mark such interrupts for later processing.
      
      To make matters worse, some of these interrupt controllers do not
      provide any method to re-trigger the interrupt.  We are unable
      to call the handler direct from enable_irq() since we may be
      in an IRQ-protected context.
      
      Therefore, we add such interrupts to a list of pending interrupts,
      which we process at the next hardware interrupt.
      ea28cbc6
    • Russell King's avatar
      Merge flint.arm.linux.org.uk:/usr/src/linux-bk-2.5/linux-2.5 · fb96b9c8
      Russell King authored
      into flint.arm.linux.org.uk:/usr/src/linux-bk-2.5/linux-2.5-rmk
      fb96b9c8