1. 26 Dec, 2002 13 commits
  2. 24 Dec, 2002 1 commit
    • Ganesh Varadarajan's avatar
      [PATCH] USB ipaq driver update · 5a8e410f
      Ganesh Varadarajan authored
      The ActiveSync USB "protocol" seems to be the same for all WinCE
      devices seen so far. So it seems reasonable to pre-emptively support
      all devices which work with ActiveSync.
      5a8e410f
  3. 23 Dec, 2002 3 commits
  4. 22 Dec, 2002 9 commits
    • Linus Torvalds's avatar
      Handle single-stepping over fast system calls without polluting · 52a150d8
      Linus Torvalds authored
      the fast case with a pushf/popf, by having the kernel debug trap
      set the TIF_SINGLESTEP flag and causing the return path to dtrt.
      52a150d8
    • Manfred Spraul's avatar
      [PATCH] Avoid overwriting boot_cpu_data from trampoline code · dd0f2bdf
      Manfred Spraul authored
      boot_cpu_data should contain the common capabilities of all cpus in the
      system. identify_cpu [arch/i386/kernel/cpu/common.c] tries to enforce
      that. But right now, the SMP trampoline code [arch/i386/kernel/head.S]
      overwrites boot_cpu_data when the secondary cpus are started, i.e.
      boot_cpu_data contains the capabilities from the last cpu that booted :-(
      
      The attached patch adds a new, __initdata variable for the asm code.
      dd0f2bdf
    • Rusty Russell's avatar
      [PATCH] honour init= bootparm · 576d92d6
      Rusty Russell authored
      Restore the accidentally dropped code to handle "init=xxx"
      576d92d6
    • Andi Kleen's avatar
      [PATCH] Fix pageattr with mem=nopentium · 4d59f610
      Andi Kleen authored
      This fixes a hang in change_page_attr() that occured with mem=nopentium.
      
      Make sure a non large page kernel mapping is handled correctly.
      Previously the page reference counter was handled incorrectly in this
      case.
      
      Also hardens change_page_attr against bogus addresses.  You get an
      EINVAL now.
      4d59f610
    • Andi Kleen's avatar
      [PATCH] Make mem=nopentium clear cpu_has_pse · 0b9e43dc
      Andi Kleen authored
      "mem=nopentium" would clear the PSE bit in boot_cpu_data, but the CPU
      detection later would overwrite it again from CPUID.
      
      The large pages would be correctly disabled, but cpu_has_pse was lying.
      
      This patch makes sure it stays clear when the option is given.
      
      I also took the liberty to remove these obnoxious cpu capability
      printks who give no use information (the data can be either gotten
      from CPUID in user space in raw form or from /proc/cpuinfo processed)
      0b9e43dc
    • Manfred Spraul's avatar
      [PATCH] reorder 'rep;nop;' in the spinlock macro · 5e163a89
      Manfred Spraul authored
      According to Intel's recommendation, 'rep;nop; should be called before
      testing if the lock variable was modified (i.e. rep nop;cmp;jcc). The
      current implementation does it the wrong way around: first test, then
      wait, then branch. I've asked Asit Mallik from Intel, and he recommended
      to change it.
      
      It should be at least consistent: Right now, spinlock uses
      'cmp;rep nop;jcc', rwlock uses 'rep nop;cmp;jcc'
      5e163a89
    • Linus Torvalds's avatar
      Merge http://linux-voyager.bkbits.net/dma-generic-mapping-2.5 · d21918b6
      Linus Torvalds authored
      into home.transmeta.com:/home/torvalds/v2.5/linux
      d21918b6
    • James Bottomley's avatar
      remove PCI_NEW_DMA_COMPAT_API · e6241a27
      James Bottomley authored
      use a #include mechanism for generic implementations of the pci_
      API in terms of the dma_ one
      e6241a27
    • Linus Torvalds's avatar
      Merge bk://linuxusb.bkbits.net/linus-2.5 · b163be65
      Linus Torvalds authored
      into home.transmeta.com:/home/torvalds/v2.5/linux
      b163be65
  5. 21 Dec, 2002 14 commits