1. 09 3月, 2012 18 次提交
  2. 23 2月, 2011 1 次提交
  3. 23 10月, 2010 1 次提交
  4. 21 8月, 2010 1 次提交
  5. 01 4月, 2009 1 次提交
  6. 21 7月, 2008 1 次提交
  7. 30 4月, 2008 1 次提交
    • A
      tty: The big operations rework · f34d7a5b
      Alan Cox 提交于
      - Operations are now a shared const function block as with most other Linux
        objects
      
      - Introduce wrappers for some optional functions to get consistent behaviour
      
      - Wrap put_char which used to be patched by the tty layer
      
      - Document which functions are needed/optional
      
      - Make put_char report success/fail
      
      - Cache the driver->ops pointer in the tty as tty->ops
      
      - Remove various surplus lock calls we no longer need
      
      - Remove proc_write method as noted by Alexey Dobriyan
      
      - Introduce some missing sanity checks where certain driver/ldisc
        combinations would oops as they didn't check needed methods were present
      
      [akpm@linux-foundation.org: fix fs/compat_ioctl.c build]
      [akpm@linux-foundation.org: fix isicom]
      [akpm@linux-foundation.org: fix arch/ia64/hp/sim/simserial.c build]
      [akpm@linux-foundation.org: fix kgdb]
      Signed-off-by: NAlan Cox <alan@redhat.com>
      Acked-by: NGreg Kroah-Hartman <gregkh@suse.de>
      Cc: Jason Wessel <jason.wessel@windriver.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      f34d7a5b
  8. 07 3月, 2008 1 次提交
  9. 14 7月, 2007 1 次提交
  10. 13 12月, 2006 1 次提交
  11. 08 12月, 2006 1 次提交
  12. 06 12月, 2006 1 次提交
  13. 11 10月, 2006 1 次提交
  14. 09 10月, 2006 2 次提交
  15. 02 10月, 2006 1 次提交
    • J
      [PATCH] const struct tty_operations · b68e31d0
      Jeff Dike 提交于
      As part of an SMP cleanliness pass over UML, I consted a bunch of
      structures in order to not have to document their locking.  One of these
      structures was a struct tty_operations.  In order to const it in UML
      without introducing compiler complaints, the declaration of
      tty_set_operations needs to be changed, and then all of its callers need to
      be fixed.
      
      This patch declares all struct tty_operations in the tree as const.  In all
      cases, they are static and used only as input to tty_set_operations.  As an
      extra check, I ran an i386 allyesconfig build which produced no extra
      warnings.
      
      53 drivers are affected.  I checked the history of a bunch of them, and in
      most cases, there have been only a handful of maintenance changes in the
      last six months.  serial_core.c was the busiest one that I looked at.
      Signed-off-by: NJeff Dike <jdike@addtoit.com>
      Acked-by: NAlan Cox <alan@redhat.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      b68e31d0
  16. 03 7月, 2006 1 次提交
  17. 01 7月, 2006 1 次提交
  18. 23 3月, 2006 1 次提交
  19. 15 1月, 2006 1 次提交
  20. 14 1月, 2006 1 次提交
    • A
      [IA64] build broken for ia64 simserial.c · d50f5c5c
      Andreas Schwab 提交于
      TTY layer buffering revamp broke ia64 in commit
       33f0f88f
      
        CC      arch/ia64/hp/sim/simserial.o
      arch/ia64/hp/sim/simserial.c: In function `receive_chars':
      arch/ia64/hp/sim/simserial.c:170: error: structure has no member named `flip'
       ... and so on ...
      make[1]: *** [arch/ia64/hp/sim/simserial.o] Error 1
      
      Patch from Andreas Schwab.
      Signed-off-by: NTony Luck <tony.luck@intel.com>
      d50f5c5c
  21. 12 1月, 2006 1 次提交
  22. 07 11月, 2005 1 次提交