1. 01 Aug, 2002 19 commits
  2. 26 Jul, 2002 2 commits
  3. 27 Jul, 2002 1 commit
  4. 26 Jul, 2002 18 commits
    • Craig Kulesa's avatar
      [PATCH] fix unresolved syms for serial drivers · c249c322
      Craig Kulesa authored
      The following two patches seem to be needed to export the requisite
      symbols needed for fully modular builds of the new serial drivers in
      2.5.28.
      c249c322
    • Russell King's avatar
      [PATCH] designated initalizers for serial/ · b35451b5
      Russell King authored
      The old form of designated initializers are obsolete: we need to
      replace them with the ISO C forms before 2.6.  Gcc has always
      supported both forms anyway.
      
      From Rusty's Trivial Patch - thanks.
      b35451b5
    • Russell King's avatar
    • Russell King's avatar
      [SERIAL] Stop open() looping while opening a non-present port · 180bc55f
      Russell King authored
      Trying to open a non-present port (for configuration) causes us to
      to endlessly loop (by returning -ERESTARTSYS).  We should be returning
      success.  This cset fixes this.
      180bc55f
    • Linus Torvalds's avatar
      7eec50e3
    • Felipe Damasio's avatar
      [PATCH] WoL support to the 8139cp ethernet driver · 734a3f22
      Felipe Damasio authored
      This patch add Wake-on-LAN support to the 8139cp ethernet driver.
      
      It also converts the gccism "foo: bar" to the C99 ".foo = bar" syntax.
      734a3f22
    • Ingo Molnar's avatar
      [PATCH] comment fix, 2.5.28 · b6d61f9b
      Ingo Molnar authored
      the attached patch fixes a comment that got incorrect via the
      set_thread_area() changes.
      b6d61f9b
    • Linus Torvalds's avatar
      Merge bk://lsm.bkbits.net/linus-2.5 · a8a4e4a9
      Linus Torvalds authored
      into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
      a8a4e4a9
    • Rusty Russell's avatar
      [PATCH] Hot-plug CPU Boot Rewrite for PPC · d243f1a8
      Rusty Russell authored
      This modifies the PPC boot sequence to "plug in" CPUs one at a
      time.
      d243f1a8
    • Rusty Russell's avatar
      [PATCH] Hot-plug CPU Boot Rewrite for i386 · 58ce9508
      Rusty Russell authored
      This modifies the i386 boot sequence to "plug in" CPUs one at a
      time.  This is the minimal change to make it work (the CPUs are
      brought up as normal during the "smp_prepare_cpus()" probe phase).
      58ce9508
    • Rusty Russell's avatar
      [PATCH] Hot-plug CPU Boot Changes · c5e06207
      Rusty Russell authored
      This patch alters the boot sequence to "plug in" each CPU, one at a
      time.  You need the patch for each architecture, as well.  The
      interface used to be "smp_boot_cpus()", "smp_commence()", and each
      arch implemented the "maxcpus" boot arg itself.  With this patch,
      it is:
        smp_prepare_cpus(maxcpus): probe for cpus and set up cpu_possible(cpu).
        __cpu_up(cpu): called *after* initcalls, for each cpu where
           cpu_possible(cpu) is true.
        smp_cpus_done(maxcpus): called after every cpu has been brought up
      c5e06207
    • Martin Dalecki's avatar
      [PATCH] IDE 107 · e1eec525
      Martin Dalecki authored
       - Fix "temporal anomaly" in do_ide_request pointed out by Petr
         Vandrovec. Thanks Petr!
      e1eec525
    • Martin Dalecki's avatar
      [PATCH] IDE 106 · 2993fd69
      Martin Dalecki authored
      Small missing notch.
      2993fd69
    • Martin Dalecki's avatar
      [PATCH] IDE 105 · e7a6bdfd
      Martin Dalecki authored
       - Rename ata-timings.h to timings.h. Same arguments as for agp.
      
       - Always include hdparm.h just before ide.h. Include them last where
         used. This is preparing to split out the IDE register declarations
         out of this file, since many other files in the kernel include it,
         which don't have anything to do with IDE.
      
       - Don't use the "IDE special" data type "byte". Just use the u8 data
         type for consistency with the rest of the kernel where applicable.
      e7a6bdfd
    • Martin Dalecki's avatar
      [PATCH] IDE 104 · 81fed994
      Martin Dalecki authored
       - Make the bit-sliced data types in hdreg.h use the bit-slice data types
         instead of the generic ones. This makes clear that those are supposed
         to be register masks.
      81fed994
    • Martin Dalecki's avatar
      [PATCH] 2.5.28 IDE 103 · d655a4ee
      Martin Dalecki authored
       - Remove pseudo headers for nonexisting support of not existing
         hardware from Big Black Boxen code.
      d655a4ee
    • Martin Dalecki's avatar
      [PATCH] 2.5.28 IDE 102 · 72b6c893
      Martin Dalecki authored
      Just getting trivia out of the way, so the interresting parts
      don't get burried by them:
      
      - Sanitize the menu configuration system.
      
      - Allow to compile atapi.c as a "foundation module" for the
         consuming device type drivers.
      72b6c893
    • Martin Dalecki's avatar
      [PATCH] 2.5.28 small REQ_SPECIAL abstraction · cc1d7840
      Martin Dalecki authored
      The attached patch does the following:
      
      1. Remove blkdev_release_request(Request); it was an unnecessary wrapper
          around blk_put_request(Request). Likely some leftover from pre-BIO
          time...
      
      2. Abstract out the fine __scsi_insert_special() function out from
          the SCSI code.
      
          Now that I have finally managed to kill all those IDE 'specific'
          REQ_BLAH request types, we can do this final step, and it will be
          used soon at least by ATA code as well. The goal is that
          scsi_request_fn and do_ide_request should start to look similar
          like silblings.
      
          Its called blk_insert_request() now and even documented in code.
      
      3. Change some stuff over from extern inline to static inline in
          blkdev.h. (trivia...)
      
      This patch doesn't change *any* functionality, so its not exposing
      SCSI to any danger :-).
      cc1d7840