An error occurred fetching the project authors.
  1. 13 Jun, 2003 1 commit
    • Ben Collins's avatar
      [PATCH] Update IEEE1394 (r952) · 5ba15264
      Ben Collins authored
       OHCI1394: Merge CONFIG_PPC_ALL changes.
       DV1394  : Fix broken endian conversions.
       ETH1394 : Fix oopses due to non-linear sk_buff's.
      5ba15264
  2. 07 May, 2003 1 commit
  3. 04 May, 2003 1 commit
    • Ben Collins's avatar
      [PATCH] ieee1394 update (r925) · e2a0532d
      Ben Collins authored
      - Remove some 2.4 compatibility macros
      - Fix userspace pointer misuse in video1394 ioctl. Caught by the
        Stanford Checker. Gotta love the automated systems.
      - Move our hotplug stuff around, to make the transition to putting our
        module dev table in mod_devicetable.h.
      - Fix ohci1394 for possible crash with async stream packets. Cleaned up
        some debug messages.
      e2a0532d
  4. 30 Apr, 2003 1 commit
    • Ben Collins's avatar
      [PATCH] Merge to current SVN repo (r915) · 467d43e7
      Ben Collins authored
      Changes:
      
        - Convert to a static highlevel handle for all drivers. Gets rid of
          a kmalloc for each driver and consolidates the highlevel handle and
          highlevel ops. Reduces points of failure as well.
        - Move host number allocation to hosts.c, giving all drivers access to
          it.
        - Implemented S800 changes for core and sbp2. Thanks to TI and LaCie
          for hardware to test this. 1394b support coming soon.
        - Convert nodemgr to using a similar device classification hack as
          usb. The old class_num hack I had in place was broken do to its
          removal. This is a much cleaner solution.
      467d43e7
  5. 24 Apr, 2003 1 commit
  6. 21 Apr, 2003 1 commit
    • Ben Collins's avatar
      [PATCH] 1394 updates · 719b6399
      Ben Collins authored
      - New irq handler prototypes.
      - Lots of un-enumurated locking fixes/cleanups (thanks in large part to
        spinlock debug compile options in the kernel).
      - Other various trivial fixes.
      719b6399
  7. 19 Apr, 2003 1 commit
    • Ben Collins's avatar
      [PATCH] IEEE-1394/Firewire updates · ffb74927
      Ben Collins authored
      - Cleaned up hostinfo usage in all drivers and created a central API to
        handle them all.
      - Fixup some spinlock mis-usage.
      - Remove devfs_handle mis-usage.
      - Cleaned up some heavy handed spinlocking to use mutexes instead.
      - Add function to send PHY config packets and use to to settle
        IRM/cycle-master/root descrepancies.
      ffb74927
  8. 17 Apr, 2003 1 commit
    • Ben Collins's avatar
      [PATCH] IEEE-1394/Firewire updates · c275257c
      Ben Collins authored
      - Add driver registration for dv1394/video1394/raw1394.
      - Fix 3 sleep-while-atomic bugs in ohci1394 and ieee1394.
      - Cleanup some bus-reset handling in ohci1394.
      - Add empty config-rom handling.
      - Check and handle SBP-2 logins active/available for non-exclusive
        logins.
      - Fix bug in SBP-2 DMA cleanup.
      c275257c
  9. 11 Apr, 2003 1 commit
    • Ben Collins's avatar
      [PATCH] IEEE-1394/Firewire updates · 7b55ea65
      Ben Collins authored
      - Convert nodemgr to new driver model.
      - Convert to new module_param() calls.
      - Merged fixes for devfs mkdir and some sleep-in-atomic fixes from
        mainline 2.5-bk
      - Fix possible memory corruption on highlevel local read/write.
      - Fix bitmap usage for some bitops.
      - Fix bug in closing ISO stream.
      - Fixes for nodemgr probing in the event of a reset storm.
      - Workaround for nForce2 firewire chipset. This is preliminary.
      - Conversion of SBP-2 to use new driver model in nodemgr, including
        providing a driver for firewire unit directories and registering
        proper callbacks.
      7b55ea65
  10. 23 Mar, 2003 2 commits
  11. 04 Mar, 2003 2 commits
    • Ben Collins's avatar
      [PATCH] More IEEE1394 updates · bf50d115
      Ben Collins authored
       - Cleanup Makefile.
       - Fix potentional crash in dv1394 module unload.
       - Why does ARM's memcpy not return void*? Oh well, work around it in
        eth1394 by not expecting standard behavior.
      bf50d115
    • Ben Collins's avatar
      [PATCH] IEEE1394 updates · d79d8cc6
      Ben Collins authored
      - Add ioctl32 compat function registration for video1394, dv1394 and
        amdtp.
      - Convert SBP-2 driver to new SCSI hotplug host/device interfaces.
      - Initial Async ISO (GASP) support.
      d79d8cc6
  12. 15 Feb, 2003 1 commit
    • Ben Collins's avatar
      [PATCH] IEEE-1394 Updates · 8e14bc0b
      Ben Collins authored
      - Converts Video1394 to PCI dma.
      - Converts ioctl's to standard interface.
      - Various minor fixes
      - Merges from 2.5.x tree
      8e14bc0b
  13. 15 Dec, 2002 1 commit
    • Ben Collins's avatar
      [PATCH] IEEE-1394/Firewire update · 6f6a50c8
      Ben Collins authored
      This covers a lot of ground in the Linux1394 SVN tree.  I haven't had
      time to keep in sync with you in a more granular way, so here's a
      bohemoth patch.  However, consider it well tested.
      6f6a50c8
  14. 18 Nov, 2002 1 commit
  15. 17 Nov, 2002 1 commit
    • Alexander Viro's avatar
      [PATCH] devfs_remove() helper · b489fedc
      Alexander Viro authored
      All callers of devfs_find_and_unregister() pass 0 in 6th argument.  All
      uses of that function either pass 0 in 3rd and 4th argument (in which
      case the 5th is ignored) or pass the existing pathname in the 2nd (in
      which case 3rd, 4th and 5th are ignored).  In all cases the first
      argument can be trivially made NULL.
      
      devfs_find_and_unregister() is left as-is.  All existing callers
      converted to new helper - devfs_remove(pathname).  Said beast does
      equivalent of devfs_find_and_unregister(NULL, pathname, 0, 0, 0, 0);
      b489fedc
  16. 15 Nov, 2002 1 commit
    • Alexander Viro's avatar
      [PATCH] dv1394 devfs use · 8d1ab570
      Alexander Viro authored
      dv1394.c piles amazing amounts of crap around its devfs entries.
      Probably a result of times before devfs_find_and_unregister()...
      
      In any case, code switched to use of devfs_find_and_unregister(),
      crapectomy performed...
      8d1ab570
  17. 12 Oct, 2002 2 commits
    • Ben Collins's avatar
      [PATCH] Dv1394 fix · 56338b9f
      Ben Collins authored
      This patch fixes a typo introduced by my last patch to dv1394.
      56338b9f
    • Ben Collins's avatar
      [PATCH] Linux IEEE-1394 Updates · a27bb86b
      Ben Collins authored
       - Cleanup (purge) some of our old compat code (never thouched)
       - Fix dv1394 compilation warnings without devfs
       - Added new config-rom handling features. Allows for on-the-fly
         config-rom generation for dynamic functionality of the host nodes.
       - Convert to workqueue from taskqueue interfaces. This is actually
         abstracted compatibility code between tqueue/workqueue.
      a27bb86b
  18. 04 Oct, 2002 2 commits
    • Ben Collins's avatar
      [PATCH] More 1394 updates · 5e81feda
      Ben Collins authored
      This incorporates security fixes from Alan that I brought from the
      2.4.20-pre9 tree.
      5e81feda
    • Ben Collins's avatar
      [PATCH] IEEE1394 updates to 2.5.40 · 8e2cc1ed
      Ben Collins authored
      - Fixup for new tq changes
      - Fix dv1394 for use without devfs
      - Fix dv1394 for PAL capture
      - Fix a hard to trigger bug in nodemgr.c
      - Add another broken firmware device to sbp2's list
      8e2cc1ed
  19. 19 Sep, 2002 3 commits
  20. 16 Sep, 2002 1 commit
  21. 14 Jul, 2002 1 commit
    • Ben Collins's avatar
      [PATCH] IEEE1394 updates · ca3dd564
      Ben Collins authored
      This is against 2.5.25. Lots of fixes. Brings things inline with 2.5.25.
      Probably makes the subsystem actually work now (well, it will work, but
      I bet without it, it doesn't). Merged in changes from the current 2.5.x
      source.
      ca3dd564
  22. 06 Apr, 2002 1 commit
    • Ben Collins's avatar
      [PATCH] IEEE-1394 Updates · 0943dcc1
      Ben Collins authored
      ieee1394 updates:
        - New drivers: eth1394, admtp
        - nodemgr cleanup
        - Fixes for ohci
        - fixed for node probes
        - small misc performance fixes
        - New /proc interface for subsystem, node listing, and dv1394
      0943dcc1
  23. 03 Apr, 2002 1 commit
  24. 23 Feb, 2002 1 commit
  25. 19 Feb, 2002 1 commit
  26. 05 Feb, 2002 1 commit
    • Linus Torvalds's avatar
      v2.5.2.2 -> v2.5.2.3 · 463727d1
      Linus Torvalds authored
      - Al Viro: VFS inode allocation moved down to filesystem, trim inodes
      - Greg KH: USB update, hotplug documentation
      - Kai Germaschewski: ISDN update
      - Ingo Molnar: scheduler tweaking ("J2")
      - Arnaldo: emu10k kdev_t updates
      - Ben Collins: firewire updates
      - Björn Wesen: cris arch update
      - Hal Duston: ps2esdi driver bio/kdev_t fixes
      - Jean Tourrilhes: move wireless drivers into drivers/net/wireless,
      update wireless API #1
      - Richard Gooch: devfs race fix
      - OGAWA Hirofumi: FATFS update
      463727d1