linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2013-06-10 17:23:05 to 2013-06-18 06:29:12 UTC [more...]

[PATCH v4 00/10] ARM: Exynos: Add Exynos5420 SoC support
 2013-06-18  6:29 UTC 

[PATCH v3 00/10] ARM: Exynos: Add Exynos5420 SoC support
 2013-06-18  4:28 UTC  (26+ messages)
` [PATCH v3 01/10] ARM: dts: fork out common Exynos5 nodes
` [PATCH v3 02/10] ARM: dts: list the CPU nodes for Exynos5250
` [PATCH v3 03/10] ARM: Exynos: Add support for Exynos5420 SoC
` [PATCH v3 04/10] serial: samsung: select Exynos specific driver data if ARCH_EXYNOS is defined
` [PATCH v3 05/10] ARM: Exynos: use four additional chipid bits to identify Exynos family
` [PATCH v3 06/10] clk: exynos5420: register clocks using common clock framework
` [PATCH v3 07/10] ARM: dts: Add initial device tree support for Exynos5420
` [PATCH v3 08/10] clocksource: exynos_mct: use (request/free)_irq calls for local timer registration
` [PATCH v3 09/10] ARM: Exynos: add secondary CPU boot base location for Exynos5420
` [PATCH v3 10/10] ARM: Exynos: extend soft-reset support "

[PATCH v3 00/24] lockless n_tty receive path
 2013-06-17 20:32 UTC  (76+ messages)
` [PATCH v4 "
  ` [PATCH v4 01/24] tty: Don't change receive_room for ioctl(TIOCSETD)
  ` [PATCH v4 02/24] tty: Simplify tty buffer/ldisc interface with helper function
  ` [PATCH v4 03/24] tty: Make ldisc input flow control concurrency-friendly
  ` [PATCH v4 04/24] n_tty: Factor canonical mode copy from n_tty_read()
  ` [PATCH v4 05/24] n_tty: Line copy to user buffer in canonical mode
  ` [PATCH v4 06/24] n_tty: Split n_tty_chars_in_buffer() for reader-only interface
  ` [PATCH v4 07/24] tty: Deprecate ldisc .chars_in_buffer() method
  ` [PATCH v4 08/24] n_tty: Get read_cnt through accessor
  ` [PATCH v4 09/24] n_tty: Don't wrap input buffer indices at buffer size
  ` [PATCH v4 10/24] n_tty: Remove read_cnt
  ` [PATCH v4 11/24] tty: Convert termios_mutex to termios_rwsem
  ` [PATCH v4 12/24] n_tty: Access termios values safely
  ` [PATCH v4 13/24] n_tty: Replace canon_data with index comparison
  ` [PATCH v4 14/24] n_tty: Make N_TTY ldisc receive path lockless
  ` [PATCH v4 15/24] n_tty: Reset lnext if canonical mode changes
  ` [PATCH v4 16/24] n_tty: Fix type mismatches in receive_buf raw copy
  ` [PATCH v4 17/24] n_tty: Don't wait for buffer work in read() loop
  ` [PATCH v4 18/24] n_tty: Separate buffer indices to prevent cache-line sharing
  ` [PATCH v4 19/24] tty: Only guarantee termios read safety for throttle/unthrottle
  ` [PATCH v4 20/24] n_tty: Move chars_in_buffer() to factor throttle/unthrottle
  ` [PATCH v4 21/24] n_tty: Factor throttle/unthrottle into helper functions
  ` [PATCH v4 22/24] n_tty: Move n_tty_write_wakeup() to avoid forward declaration
  ` [PATCH v4 23/24] n_tty: Special case pty flow control
  ` [PATCH v4 24/24] n_tty: Queue buffer work on any available cpu
  ` [PATCH v2 00/16] lockless tty flip buffers
    ` [PATCH v2 01/16] tty: Compute flip buffer ptrs
    ` [PATCH v2 02/16] tty: Fix flip buffer free list
    ` [PATCH v2 03/16] tty: Factor flip buffer initialization into helper function
    ` [PATCH v2 04/16] tty: Merge tty_buffer_find() into tty_buffer_alloc()
    ` [PATCH v2 05/16] tty: Use generic names for flip buffer list cursors
    ` [PATCH v2 06/16] tty: Use lockless flip buffer free list
    ` [PATCH v2 07/16] tty: Simplify flip buffer list with 0-sized sentinel
    ` [PATCH v2 08/16] tty: Track flip buffer memory limit atomically
    ` [PATCH v2 09/16] tty: Make driver-side flip buffers lockless
    ` [PATCH v2 10/16] tty: Ensure single-threaded flip buffer consumer with mutex
    ` [PATCH v2 11/16] tty: Only perform flip buffer flush from tty_buffer_flush()
    ` [PATCH v2 12/16] tty: Avoid false-sharing flip buffer ptrs
    ` [PATCH v2 13/16] tty: Use non-atomic state to signal flip buffer flush pending
    ` [PATCH v2 14/16] tty: Merge __tty_flush_buffer() into lone call site
    ` [PATCH v2 15/16] tty: Fix unsafe vt paste_selection()
    ` [PATCH v2 16/16] tty: Remove private constant from global namespace
    ` [PATCH v2 0/9] mostly lockless tty echo
      ` [PATCH v2 1/9] n_tty: Remove unused echo_overrun field
      ` [PATCH v2 2/9] n_tty: Use separate head and tail indices for echo_buf
      ` [PATCH v2 3/9] n_tty: Replace echo_cnt with computed value
      ` [PATCH v2 4/9] n_tty: Remove echo_lock
      ` [PATCH v2 5/9] n_tty: Eliminate echo_commit memory barrier
      ` [PATCH v2 6/9] n_tty: Process echoes in blocks
      ` [PATCH v2 7/9] n_tty: Only flush echo output if actually output
      ` [PATCH v2 8/9] n_tty: Eliminate counter in __process_echoes
      ` [PATCH v2 9/9] n_tty: Avoid false-sharing echo buffer indices
      ` [PATCH v2 00/20] tty: streamline per-char receiving
        ` [PATCH v2 01/20] n_tty: Fix EOF push handling
        ` [PATCH v2 02/20] n_tty: Remove alias ptrs in __receive_buf()
        ` [PATCH v2 03/20] n_tty: Move buffers into n_tty_data
        ` [PATCH v2 04/20] n_tty: Rename process_char_map to char_map
        ` [PATCH v2 05/20] n_tty: Simplify __receive_buf loop count
        ` [PATCH v2 06/20] n_tty: Factor 'real raw' receive_buf into standalone fn
        ` [PATCH v2 07/20] n_tty: Factor signal char handling into separate fn
        ` [PATCH v2 08/20] n_tty: Factor flagged "
        ` [PATCH v2 09/20] n_tty: Factor raw mode receive_buf() "
        ` [PATCH v2 10/20] n_tty: Special case EXTPROC receive_buf() as raw mode
        ` [PATCH v2 11/20] n_tty: Factor tty->closing receive_buf() into separate fn
        ` [PATCH v2 12/20] n_tty: Factor standard per-char i/o "
        ` [PATCH v2 13/20] n_tty: Eliminate char tests from IXANY restart test
        ` [PATCH v2 14/20] n_tty: Split n_tty_receive_char()
        ` [PATCH v2 15/20] n_tty: Factor ISTRIP and IUCLC receive_buf into separate fn
        ` [PATCH v2 16/20] n_tty: Factor PARMRK from normal per-char i/o
        ` [PATCH v2 17/20] n_tty: Remove overflow tests from receive_buf() path
        ` [PATCH v2 18/20] n_tty: Un-inline single-use functions
        ` [PATCH v2 19/20] n_tty: Factor LNEXT processing from per-char i/o path
        ` [PATCH v2 20/20] tty: Remove extra wakeup from pty write() path

[PATCH 4/7] n_tty: Encapsulate minimum_to_wake within N_TTY
 2013-06-17 19:58 UTC  (7+ messages)
` [PATCH 0/4] [resend] n_tty fixes
  ` [PATCH 1/4] n_tty: Encapsulate minimum_to_wake within N_TTY
  ` [PATCH 2/4] n_tty: Untangle read completion variables
  ` [PATCH 3/4] n_tty: Fix unsafe update of available buffer space
  ` [PATCH 4/4] n_tty: Buffer work should not reschedule itself

[PATCH v2 00/11] ARM:STixxxx: Add STixxxx platform and board support
 2013-06-17 16:27 UTC  (37+ messages)
` [PATCH v2 02/11] clocksource:global_timer: Add ARM global timer support
` [PATCH v2 03/11] regmap: Add regmap_field APIs
` [PATCH v2 05/11] pinctrl:stixxxx: Add pinctrl and pinconf support
` =?yes?q?=5BPATCH=20v2=2006/11=5D=20ARM=3Astixxxx=3A=20Add=20STiH415=20SOC=20support?=
  ` [PATCH v2 06/11] ARM:stixxxx: Add STiH415 SOC support
` [PATCH v2 07/11] ARM:stixxxx: Add STiH416 "
` [PATCH v2 09/11] ARM:stixxxx: Add stixxxx options to multi_v7_defconfig
` [PATCH v2 04/11] mfd:stixxxx-syscfg: Add ST System Configuration support

[PATCH 01/13] ARM: Exynos: initialize l2x0 cache controller only for cortex-a9 based SoCs
 2013-06-17 11:08 UTC  (48+ messages)
` [PATCH 02/13] ARM: Exynos: fix secondary cpu power control register address calculation
` [PATCH 03/13] ARM: dts: fork out common Exynos5 nodes
` [PATCH 09/13] clk: exynos5420: register clocks using common clock framework
` [PATCH 10/13] ARM: dts: Add initial device tree support for Exynos5420
  ` [PATCH v2 00/10] ARM: Exynos: Add Exynos5420 SoC support
    ` [PATCH v2 01/10] ARM: dts: fork out common Exynos5 nodes
    ` [PATCH v2 02/10] ARM: dts: list the CPU nodes for Exynos5250
    ` [PATCH v2 03/10] ARM: Exynos: Add support for Exynos5420 SoC
    ` [PATCH v2 04/10] serial: samsung: select Exynos specific driver data if ARCH_EXYNOS is defined
    ` [PATCH v2 05/10] ARM: Exynos: use four additional chipid bits to identify Exynos family
    ` [PATCH v2 06/10] clk: exynos5420: register clocks using common clock framework
    ` [PATCH v2 07/10] ARM: dts: Add initial device tree support for Exynos5420
    ` [PATCH v2 08/10] clocksource: exynos_mct: use (request/free)_irq calls for local timer registration
    ` [PATCH v2 09/10] ARM: Exynos: add secondary CPU boot base location for Exynos5420
    ` [PATCH v2 10/10] ARM: Exynos: extend soft-reset support "
` [PATCH 11/13] clocksource: exynos_mct: extend local timer support for four cores
` [PATCH 13/13] ARM: Exynos: extend soft-reset support for Exynos5420

[PATCH 0/2] serial: sh-sci: HSCIF support
 2013-06-17  3:15 UTC  (6+ messages)
` [PATCH 1/2] "
` [PATCH 2/2] ARM: shmobile: r8a7790: don't use external clock for SCIFs

Possible tty VT1 disallocate regression
 2013-06-16 17:35 UTC  (6+ messages)
  ` [PATCH] tty/vt: Return EBUSY if deallocating VT1 and it is busy

[PATCH 27/28] ARM: EXYNOS: Remove CONFIG_SOC_EXYNOS4412
 2013-06-15 14:39 UTC  (5+ messages)

[PATCH] pty: Remove redundant itty reset
 2013-06-15 13:01 UTC  (2+ messages)
` [PATCH] tty: Reset itty for other pty

[PATCH 2/7] tty: Add lock/unlock ldisc pair functions
 2013-06-15 11:04 UTC  (8+ messages)
` [PATCH 0/6] ldsem patchset, reordered and rebased
  ` [PATCH 1/6] tty: Fix tty_ldisc_lock name collision
  ` [PATCH 2/6] tty: Add lock/unlock ldisc pair functions
  ` [PATCH 3/6] tty: Replace ldisc locking with ldisc_sem
  ` [PATCH 4/6] tty: Clarify ldisc variable
  ` [PATCH 5/6] tty: Fix hangup race with TIOCSETD ioctl
  ` [PATCH 6/6] tty: Clarify multiple-references comment in "

API to flush rx fifo?
 2013-06-14 20:53 UTC  (12+ messages)

[PATCH] serial: mfd: Add sysrq support
 2013-06-14 10:11 UTC 

[PATCH] serial/mpc52xx_uart: fix kernel panic when system reboot
 2013-06-12  7:21 UTC 

[PATCH] drivers/tty: Don't hangup shared ttys
 2013-06-12  0:05 UTC  (3+ messages)

Connection to a 3G USB Module using USB-Serial
 2013-06-10 17:23 UTC  (4+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).