An error occurred fetching the project authors.
  1. 28 Oct, 2004 1 commit
    • Thomas Gleixner's avatar
      [PATCH] Lock initializer unifying (Network drivers) · b76557d9
      Thomas Gleixner authored
      To make spinlock/rwlock initialization consistent all over the kernel,
      this patch converts explicit lock-initializers into spin_lock_init() and
      rwlock_init() calls.
      
      Currently, spinlocks and rwlocks are initialized in two different ways:
      
        lock = SPIN_LOCK_UNLOCKED
        spin_lock_init(&lock)
      
        rwlock = RW_LOCK_UNLOCKED
        rwlock_init(&rwlock)
      
      this patch converts all explicit lock initializations to
      spin_lock_init() or rwlock_init(). (Besides consistency this also helps
      automatic lock validators and debugging code.)
      
      The conversion was done with a script, it was verified manually and it
      was reviewed, compiled and tested as far as possible on x86, ARM, PPC.
      
      There is no runtime overhead or actual code change resulting out of this
      patch, because spin_lock_init() and rwlock_init() are macros and are
      thus equivalent to the explicit initialization method.
      Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
      Acked-by: default avatarIngo Molnar <mingo@elte.hu>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
      b76557d9
  2. 25 Aug, 2004 1 commit
  3. 12 Jul, 2004 1 commit
  4. 21 Jun, 2004 1 commit
  5. 24 Feb, 2004 1 commit
  6. 10 Jan, 2004 2 commits
  7. 28 Oct, 2003 1 commit
    • Mike Phillips's avatar
      [PATCH] ibmtr_cs/ibmtr - get working again · 8c7981bc
      Mike Phillips authored
      Patch to get ibmtr_cs / ibmtr working again.  A change went in a while back
      I missed that killed it.  Also fixed the timer to eliminate the
      uninitialized timer error on close.
      8c7981bc
  8. 19 Aug, 2003 1 commit
  9. 16 Aug, 2003 1 commit
    • Stephen Hemminger's avatar
      [NET]: ibmtr - get rid of MOD_INC/DEC. · 6d62388c
      Stephen Hemminger authored
      With the new module system MOD_INC/MOD_DEC are no longer necessary.
      Also changed to new module init/exit macros for function setup.
      
      The module exit code can sleep, so calling schedule_timeout is better
      than spinning.
      6d62388c
  10. 31 Jul, 2003 1 commit
  11. 02 Jun, 2003 1 commit
  12. 27 Apr, 2003 1 commit
    • Andrew Morton's avatar
      net driver cleanup, volume 7 · b095c996
      Andrew Morton authored
      100% irqreturn_t cleanups
      
      Affected drivers: 3c523, 527, 68360enet, 7990, a2065, am79c961a,
      appletalk/{ltpc,cops}, ariadne, {lotsa}lance, au1000_eth, eth16i,
      ewrk3, gt96100eth, hamradio/several, ibmlana, ioc3-eth, *-skeleton,
      lasi_82596, mac89x0, pcmcia/3c574_cs, rrunner, sb1000, sb1250-mac,
      sgiseeq, sk_g16, sk_mca, skfddi, sonic, sun3_82586, tc35815,
      tokenring/several, wan/several
      b095c996
  13. 24 Apr, 2003 1 commit
  14. 21 Nov, 2002 1 commit
  15. 08 Oct, 2002 1 commit
  16. 11 Feb, 2002 1 commit
  17. 05 Feb, 2002 9 commits
    • Linus Torvalds's avatar
      v2.4.14.1 -> v2.4.14.2 · a8a2069f
      Linus Torvalds authored
        - Ivan Kokshaysky: fix alpha dec_and_lock with modules, for alpha config entry
        - Kai Germaschewski: ISDN updates
        - Jeff Garzik: network driver updates, sysv fs update
        - Kai Mäkisara: SCSI tape update
        - Alan Cox: large drivers merge
        - Nikita Danilov: reiserfs procfs information
        - Andrew Morton: ext3 merge
        - Christoph Hellwig: vxfs livelock fix
        - Trond Myklebust: NFS updates
        - Jens Axboe: cpqarray + cciss dequeue fix
        - Tim Waugh: parport_serial base_baud setting
        - Matthew Dharm: usb-storage Freecom driver fixes
        - Dave McCracken: wait4() thread group race fix
      a8a2069f
    • Linus Torvalds's avatar
      v2.4.9.8 -> v2.4.9.9 · 1d66e22e
      Linus Torvalds authored
        - Greg KH: start migration to new "min()/max()"
        - Roman Zippel: move affs over to "min()/max()".
        - Vojtech Pavlik: VIA update (make sure not to IRQ-unmask a vt82c576)
        - Jan Kara: quota bug-fix (don't decrement quota for non-counted inode)
        - Anton Altaparmakov: more NTFS updates
        - Al Viro: make nosuid/noexec/nodev be per-mount flags, not per-filesystem
        - Alan Cox: merge input/joystick layer differences, driver and alpha merge
        - Keith Owens: scsi Makefile cleanup
        - Trond Myklebust: fix oopsable race in locking code
        - Jean Tourrilhes: IrDA update
      1d66e22e
    • Linus Torvalds's avatar
      v2.4.7.4 -> v2.4.7.5 · a931b32f
      Linus Torvalds authored
        - Alan Cox: more merging
        - L.C. Chang: new SiS IDE PCI id's.
        - Maciej Rozycki: make MP table parsing more anal. Should fix broken P4 MP tables.
        - Leonard Zubkoff: merge DAC960 completion changes
        - Christoph Rohland: saner tmpfs mount-time limit behaviour (and remount)
        - me: buffer.c logic update - faster and hopefully livelock-free
      a931b32f
    • Linus Torvalds's avatar
      v2.4.6.6 -> v2.4.6.7 · 74f5133b
      Linus Torvalds authored
        - Andreas Dilger: various ext2 cleanups
        - Richard Gooch: devfs update
        - Johannes Erdfelt: USB updates
        - Alan Cox: merges
        - David Miller: fix SMP pktsched bootup deadlock (CONFIG_NET_SCHED)
        - Roman Zippel: AFFS update
        - Anton Altaparmakov: NTFS update
        - me: fix races in vfork() (semaphores are not good completion handlers)
        - Jeff Garzik: net driver updates, sysvfs update
      74f5133b
    • Linus Torvalds's avatar
      v2.4.6 -> v2.4.6.1 · 17023327
      Linus Torvalds authored
        - merge with Alan (irda, s390, mips64, chris, sk98lin, mips/mm)
        - rth: fix alpha RTC calibration
        - Paul Mackerras: fix PPC typo
      17023327
    • Linus Torvalds's avatar
      v2.4.5.2 -> v2.4.5.3 · a5287abe
      Linus Torvalds authored
        - remember to increment the version number
        - Chris Mason: reiserfs mark_journal_new and bh leak fix
        - Richard Gooch: devfs update
        - Alexander Viro: further FS cleanup (superblock list)
        - David Woodhouse: MTD update
        - Kai Germaschewski: ISDN update (stanford checker fixes etc)
        - Rich Baum: gcc-3.0 warning fixes
        - Jeff Garzik: network driver updates
        - Geert Uytterhoeven: m68k fbdev logo merge glitch fix
        - Andrea Arcangeli: fix signal return path
        - David Miller: Sparc updates
        - Johannes Erdfelt: USB update
        - Carsten Otte, Andries Brouwer: don't clear blk_size unconditionally
        on partition check
        - Martin Frey: alpha Sable irq fix
        - Paul Mackerras: PPC softirq update
        - Patrick Mochel: PCI power management infrastructure
        - Robert Siemer: miroSOUND driver update
        - Neil Brown: knfsd updates, including ability to export ReiserFS filesystems
        - Trond Myklebust: NFS readdir fixup, don't update atime on client
        - Andrew Morton: truncate_inode_pages speedup
        - Paul Menage: make inode quota count all inodes..
      a5287abe
    • Linus Torvalds's avatar
      v2.4.2.5 -> v2.4.2.6 · 94540b50
      Linus Torvalds authored
        - Jeff Garzik: network driver merge
        - Andrew Morton: fix missed page_table_lock unlock
        - David Miller: Qlogic,FC bufix, page allocation order problem.
      94540b50
    • Linus Torvalds's avatar
      v2.4.1.3 -> v2.4.1.4 · 2a7117ac
      Linus Torvalds authored
        - big S/390x 64-bit merge
        - typos and license name fixes. doc updates.
        - more include file cleanups (phase out "malloc.h")
        - even more elevator corner cases.. When not merging, find the best insertion point.
        - pmac ide update
        - network fixes (netif_wake_queue on tx timeout)
        - USB printer select() fix
        - NFS client missed initialization, deamon fixed client address check
      2a7117ac
    • Linus Torvalds's avatar
      Import changeset · 7a2deb32
      Linus Torvalds authored
      7a2deb32