An error occurred fetching the project authors.
  1. 25 Aug, 2004 1 commit
  2. 24 Aug, 2004 2 commits
  3. 15 Jul, 2004 1 commit
    • David Woodhouse's avatar
      NAND flash driver updates. · 987817ef
      David Woodhouse authored
      Update the core NAND code:
       - support multiple chips
       - support bad block tables
       - improved generic ECC support and 'spare area' usage.
       - 16-bit NAND
       - Large-block NAND devices
       - Renesas AG-AND devices
       - M-Systems DiskOnChip devices
       - Other new board support wrappers
      
      Most of the work was done by Thomas Gleixner.
      Signed-Off-By: default avatarDavid Woodhouse <dwmw2@infradead.org>
      987817ef
  4. 14 Jul, 2004 1 commit
    • Luca Risolia's avatar
      [PATCH] Updates for W99[87]CF and new SN9C10[12] driver · be3a4fef
      Luca Risolia authored
      This single patch contains some updates and cleanups for
      the W996[87]CF driver and a new experimental V4L2 driver
      for SONiX SN9C10[12] PC Camera Controllers connected to various
      image sensors. I have not divided the patch in two logical
      sub-patches becouse of two independent changes in one common
      file, KConfigure.
      
      More informations about the SN9C10[12] can be found below in the
      documentation. The driver is marked as "EXPERIMENTAL", meaning
      that there are no known bugs, but further testing is necessary
      before considering it stable. This the first driver using the new
      SBGGR8 video format, which has been recently added to the mainline
      kernel, so there are no available user application at the moment:
      this is one more reason why it should be in the kernel now.
      
      Changes in W996[87]CF:
      - remove w9968cf_externaldef.h now that ovcamchip.h is in the kernel;
      - mark user pointers with __user in a cleaner way to avoid sparse
        warnings;
      - use appropriate exclusive wait macro during open();
      - replace info(), err(), warn() with dev_info(), dev_err(), dev_warn(),
        pr_debug(), pr_info();
      - replace usb_unlink_urb() + wait_for_completion() with usb_kill_urb();
      - fix memory offsets for buffers in the chip to be used with generic
        image sensors;
      - 'vppmod_load', 'debug', 'specific_debug' and 'simcams' module
        parameters are now writeable by default;
      - fix possible race conditions between disconnect() and open();
      - add automatic 'ovcamchip' module loading option with 'ovmod_load'
        module parameter;
      - get rid of deprecated intermodule communication routines and use the
        correct module registration/unregistration approach;
      - remove period at the end of kernel messages;
      - fix several typos;
      - use MODULE_VERSION() macro;
      - other small internal cleanups;
      - documentation updates.
      Signed-off-by: default avatarLuca Risolia <luca.risolia@studio.unibo.it>
      Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
      be3a4fef
  5. 04 Jul, 2004 1 commit
  6. 29 Jun, 2004 1 commit
  7. 24 Jun, 2004 1 commit
  8. 20 Jun, 2004 1 commit
  9. 18 Jun, 2004 2 commits
  10. 29 May, 2004 2 commits
  11. 05 May, 2004 1 commit
  12. 29 Apr, 2004 1 commit
  13. 22 Apr, 2004 1 commit
    • Andrew Morton's avatar
      [PATCH] Add Pete Popov to credits · 0ef7471d
      Andrew Morton authored
      From: Ralf Baechle <ralf@linux-mips.org>
      
      Add Pete to CREDITS for all the time he's invested into supporting the AMD
      Alchemy of SOCs and eval boards.
      0ef7471d
  14. 12 Apr, 2004 2 commits
    • Andrew Morton's avatar
      [PATCH] updating email info in CREDITS · 17ec30a3
      Andrew Morton authored
      From: Rusty Russell <rusty@rustcorp.com.au>
      
      From:  Thomas Molina <tmolina@cablespeed.com>
      17ec30a3
    • Andrew Morton's avatar
      [PATCH] posix message queues: implementation · be94d44e
      Andrew Morton authored
      From: Manfred Spraul <manfred@colorfullife.com>
      
      Actual implementation of the posix message queues, written by Krzysztof
      Benedyczak and Michal Wronski.  The complete implementation is dependant on
      CONFIG_POSIX_MQUEUE.
      
      It passed the openposix test suite with two exceptions: one mq_unlink test
      was bad and tested undefined behavior.  And Linux succeeds
      mq_close(open(,,,)).  The spec mandates EBADF, but we have decided to ignore
      that: we would have to add a new syscall just for the right error code.
      
      The patch intentionally doesn't use all helpers from fs/libfs for kernel-only
      filesystems: step 5 allows user space mounts of the file system.
      
      
      
      Signal changes:
      
      The patch redefines SI_MESGQ using __SI_CODE: The generic Linux ABI uses
      a negative value (i.e.  from user) for SI_MESGQ, but the kernel internal
      value must be posive to pass check_kill_value.  Additionally, the patch
      adds support into copy_siginfo_to_user to copy the "new" signal type to
      user space.
      
      
      
      Changes in signal code caused by POSIX message queues patch:
      
      General & rationale:
      
        mqueues generated signals (only upon notification) must have si_code
        == SI_MESGQ.  In fact such a signal is send from one process which
        caused notification (== sent message to empty message queue) to
        another which requested it.  Both processes can be of course unrelated
        in terms of uids/euids.  So SI_MESGQ signals must be classified as
        SI_FROMKERNEL to pass check_kill_permissions (not need to say that
        this signals ARE from kernel).
      
        Signals generated by message queues notification need the same
        fields in siginfo struct's union _sifields as POSIX.1b signals and we
        can reuse its union entry.
      
        SI_MESGQ was previously defined to -3 in kernel and also in glibc. 
        So in userspace SI_MESGQ must be still visible as -3.
      
      Solution:
      
        SI_MESGQ is defined in the same style as SI_TIMER using __SI_CODE macro.
      
        Details:
      
          Fortunately copy_siginfo_to_user copies si_code as short.  So we
          can use remaining part of int value freely.  __SI_CODE does the
          work.  SI_MESGQ is in kernel:
      
       		6<<16 | (-3 & 0xffff) what is > 0
      
          but to userspace is copied
      
       		(short) SI_MESGQ == -3
      
      Actual changes:
      
        Changes in include/asm-generic/siginfo.h
      
        __SI_MESGQ added in signal.h to represent inside-kernel prefix of
        SI_MESGQ.  SI_MESGQ is redefined from -3 to __SI_CODE(__SI_MESGQ, -3)
      
        Except mips architecture those changes should be arch independent
        (asm-generic/siginfo.h is included in arch versions).  On mips
        SI_MESGQ is redefined to -4 in order to be compatible with IRIX.  But
        the same schema can be used.
      
        Change in copy_siginfo_to_user: We only add one line to order the
        same copy semantics as for _SI_RT.
      
        This change isn't very portable - some arch have its own
        copy_siginfo_to_user.  All those should have similar change (but
        possibly not one-line as _SI_RT case was sometimes ignored because i
        wasn't used yet, e.g.  see ia64 signal.c).
      
      Update:
      mq: only fail with invalid timespec if mq_timed{send,receive} needs to block
      From: Jakub Jelinek <jakub@redhat.com>
      
      POSIX requires EINVAL to be set if:
      "The process or thread would have blocked, and the abs_timeout parameter
      specified a nanoseconds field value less than zero or greater than or equal
      to 1000 million."
      but 2.6.5-mm3 returns -EINVAL even if the process or thread would not block
      (if the queue is not empty for timedreceive or not full for timedsend).
      be94d44e
  15. 31 Mar, 2004 1 commit
  16. 28 Mar, 2004 1 commit
  17. 20 Mar, 2004 1 commit
    • Andrew Morton's avatar
      [PATCH] therm_adt7467 update · 3a86d964
      Andrew Morton authored
      From: "Colin Leroy" <colin@colino.net>
      
      The fan driver I wrote for adt746x looks like it only handles the adt7467
      chip found in iBooks G4; but it also handles the adt7460 chip found in the
      Powerbook G4 Alu.  Here's a patch that updates therm_adt7467.c, Kconfig and
      Makefile.
      3a86d964
  18. 15 Mar, 2004 1 commit
    • Andrew Morton's avatar
      [PATCH] minor credits updates · 8248abaa
      Andrew Morton authored
      From: Trivial Patch Monkey <trivial@rustcorp.com.au>
      
      From:  andersen@codepoet.org
      
      I've moved...  This patch updates my contact info.
      8248abaa
  19. 12 Mar, 2004 1 commit
    • Andrew Morton's avatar
      [PATCH] UDF filesystem update · 5cc6e01a
      Andrew Morton authored
      From: Ben Fennema <bfennema@falcon.csc.calpoly.edu>
      
      - added udf 2.5 #defines
      
      - fixed prealloc discard race
      
      - fixed several bugs in inode_getblk
      
      - added S_IFSOCK support
      
      - fix unicode encoding bug
      
      - change partition allocation from kmalloc to vmalloc for large
        allocations
      5cc6e01a
  20. 09 Mar, 2004 1 commit
    • Stéphane Doyon's avatar
      [PATCH] USB brlvger: Driver obsoleted by rewrite using usbfs · 25a1f19a
      Stéphane Doyon authored
      We have rewritten the brlvger (Tieman Voyager USB Braille display) driver
      so that it works from user-space through usbfs. It appears to work just as
      well as the in-kernel driver.
      
      The brlvger driver in the 2.6.x kernel is now obsolete and should be
      removed. The attached patch against 2.6.3 does this. Please apply.
      NB: The following files are completely deleted:
          Documentation/usb/brlvger.txt
          drivers/usb/misc/brlvger.c
          include/linux/brlvger.h
      
      The new Voyager driver is available (stil under GPL) as part of BRLTTY,
      starting with version 3.5pre1 (http://mielke.cc/brltty).
      Thanks to Dave Mielke who implemented BRLTTY's usbfs functionality, among
      lots of other stuff.
      25a1f19a
  21. 27 Jan, 2004 1 commit
  22. 25 Jan, 2004 1 commit
  23. 16 Jan, 2004 1 commit
  24. 14 Jan, 2004 1 commit
  25. 06 Jan, 2004 1 commit
  26. 22 Dec, 2003 1 commit
  27. 09 Oct, 2003 1 commit
  28. 06 Oct, 2003 1 commit
    • Achim Leubner's avatar
      [PATCH] gdth driver update · ad4341e7
      Achim Leubner authored
      - Maintainers email address and copyright messages updated
      - Scanning for EISA and ISA controllers disabled due to a resource conflict
        with the Adaptec aic driver
      - Switch "probe_eisa_isa" added to give the possibility to enable the
        EISA/ISA scan if required
      - Driver version increased to 2.08
      ad4341e7
  29. 04 Oct, 2003 1 commit
    • Michael Hunold's avatar
      [PATCH] DVB: MAINTAINERS, CREDITS, ioctl-number.txt updates · db4cf641
      Michael Hunold authored
      - MAINTAINERS:
         - add the LinuxTV.org project as the DVB driver maintainer
         - add me as the saa7146 v4l2 driver maintainer
      - CREDITS: add me as the saa7146 v4l2 driver author
      - Documentation/ioctl-number.txt:
         - remove bogus reference to Linux DVD API, which never really existed
         - remove bogus referenc to Philips saa7146 driver, which never came
           to life
      db4cf641
  30. 23 Sep, 2003 1 commit
  31. 17 Sep, 2003 1 commit
  32. 16 Sep, 2003 1 commit
  33. 31 Aug, 2003 1 commit
    • Andrew Morton's avatar
      [PATCH] hch has moved · 6a94c0e5
      Andrew Morton authored
      From: Christoph Hellwig <hch@lst.de>
      
      I moved a while ago and I'm also not at SGI anymore.
      6a94c0e5
  34. 27 Aug, 2003 1 commit
  35. 20 Aug, 2003 1 commit
    • Alan Cox's avatar
      [PATCH] Maintainer/Credit update · 63360427
      Alan Cox authored
      - Roadrunner address is defunct
      - 3c501/Z85230 are no longer maintained
      - Update other stuff because I will be away for a year
      63360427
  36. 17 Aug, 2003 1 commit