An error occurred fetching the project authors.
  1. 04 Nov, 2003 1 commit
  2. 03 Nov, 2003 3 commits
  3. 02 Nov, 2003 2 commits
    • Steve French's avatar
      Fix EIO caused by network timeouts on changing file size. · a6f63f7a
      Steve French authored
      To avoid spurious oplock breaks from server, in the case
      of inodes that we already have open, avoid doing path
      based setting of file size if we can do it by handle.
      This keeps our caching token (oplock) and avoids
      timeouts when the local oplock break takes longer to flush
      writebehind data than the SMB timeout for the SetPathInfo 
      request would allow
      a6f63f7a
    • Steve French's avatar
      fix oops in send_sig on unmount of cifs vfs due to sending signal to... · 9baf76e9
      Steve French authored
      fix oops in send_sig on unmount of cifs vfs due to sending signal to demultiplex thread after it has exited.  
      Do not treat invalid handle warning in response to oplock break (of file that is now closed) as an error.
      9baf76e9
  4. 01 Nov, 2003 4 commits
    • Steve French's avatar
      Merge bk://linux.bkbits.net/linux-2.5 · 3ea7f245
      Steve French authored
      into hostme.bitkeeper.com:/repos/c/cifs/linux-2.5cifs
      3ea7f245
    • Linus Torvalds's avatar
      Forward-port PIRQ table updates from 2.4.x · 3f5ae09d
      Linus Torvalds authored
      This separates out the PIRQ table parsing to vendor-specific
      code, which allows us to handle specific vendor quirks. In
      particular, SiS has a really funky notion of what PCI device
      ID's are meant to be.
      
      Some hardware designers seem to be hitting the recreational
      drugs a bit too heavily. Tssk, tssk.
      
      The Sis96x irq routing update is confirmed to fix at least
      one laptop.
      3f5ae09d
    • Bartlomiej Zolnierkiewicz's avatar
      [PATCH] AMD/nForce driver update · d11cad54
      Bartlomiej Zolnierkiewicz authored
      From Vojtech Pavlik <vojtech@suse.cz>.
      
      Change AMD8111 and nForce2 max speed to UDMA133.
      
      Add workaround for Serenade mainboards which only handle UDMA100.
      
      Fix printing of chipset name.
      
      Fix some whitspace issues.
      d11cad54
    • Bartlomiej Zolnierkiewicz's avatar
      [PATCH] add support for new nForce IDE controllers · 4ad8b26a
      Bartlomiej Zolnierkiewicz authored
      Original 2.4.23-pre4 patch by Allen Martin <AMartin@nvidia.com>.
      
      This does not add any new code, it only adds new PCI ID's and related
      info to the existing driver.
      4ad8b26a
  5. 31 Oct, 2003 1 commit
  6. 30 Oct, 2003 2 commits
  7. 31 Oct, 2003 3 commits
  8. 30 Oct, 2003 16 commits
  9. 29 Oct, 2003 8 commits
    • Dave Kleikamp's avatar
      JFS: remove racy, redundant call to block_invalidatepage · bdf29b0a
      Dave Kleikamp authored
      __invalidate_metapages references mp->page after after releasing the
      meta_lock spinlock, without increasing the use count.  This is racy and
      unnecessary since setting the META_discard flag is sufficient.
      block_invalidatepage() will be called when the metapage is released.
      bdf29b0a
    • Steve French's avatar
      Merge bk://linux.bkbits.net/linux-2.5 · 84205632
      Steve French authored
      into hostme.bitkeeper.com:/repos/c/cifs/linux-2.5cifs
      84205632
    • Rusty Russell's avatar
      [PATCH] Fix for module initialization failure · a8f97595
      Rusty Russell authored
      Bug reported by Paul Mackerras: if a module parameter fails, we didn't
      call module_arch_cleanup().
      
      On x86 this was harmless (module_arch_cleanup() is a no-op), but on
      other architectures like PPC this causes inconsistent data structures
      and subsequent oopses.
      a8f97595
    • Linus Torvalds's avatar
      Merge bk://kernel.bkbits.net/gregkh/linux/pci-2.6 · 6b90e276
      Linus Torvalds authored
      into home.osdl.org:/home/torvalds/v2.5/linux
      6b90e276
    • Greg Kroah-Hartman's avatar
    • Greg Kroah-Hartman's avatar
    • Ivan Kokshaysky's avatar
      [PATCH] PCI: fix bug in pci_setup_bridge() · 530ca2f1
      Ivan Kokshaysky authored
      This bug prevents Alphas with older firmware from booting if there
      is a card with PCI-PCI bridge that supports 32-bit IO.
      This has happened on AS2100 with a quad-tulip card, for example:
       - initially, the I/O window of 21152 bridge was 0x10000-0x10fff,
         as set up by firmware;
       - pci_setup_bridge() is going to change this, say, to 0xa000-0xafff:
         first, it updates PCI_IO_BASE_UPPER16 and PCI_IO_LIMIT_UPPER16
         registers, so that IO window temporarily is at 0x0000-0x0fff,
         which effectively blocks up all legacy IO ports in the lower
         4K range, such as serial, floppy, RTC an so on;
         does debugging printk - machine dies here with recursive
         machine checks as the serial console has gone.
      
      Moving (or disabling) the debugging printk is not a solution -
      there is possibility that timer interrupt (which might access RTC
      ports) occurs between writes to lower and upper parts of the
      base/limit registers.
      
      The patch temporarily disables the IO window of the bridge by
      setting PCI_IO_BASE_UPPER16 > PCI_IO_LIMIT_UPPER16 before doing
      an update. It's safe, as we don't have any active IO behind
      the bridge at this point. Also, it's a NOP for bridges with
      16-bit-only IO.
      Similar (but simpler, as we always clear upper 32 bits) fix
      for 64-bit prefetchable MMIO range.
      530ca2f1
    • Linus Torvalds's avatar
      Merge http://jfs.bkbits.net/linux-2.5 · 5d03987b
      Linus Torvalds authored
      into home.osdl.org:/home/torvalds/v2.5/linux
      5d03987b