diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-08-19 10:44:27 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-27 19:17:35 -0400 |
commit | 9b88748b362c3b449bfac05ae1353b73b40a785f (patch) | |
tree | 4fa210eed9b93c09ad11d8f5e84b11d136651c5e | |
parent | f5693ea2710cd9f26ed2bfa917f7ed68e9502464 (diff) |
tty: serial: tegra: drop uart_port->lock before calling tty_flip_buffer_push()
The current driver triggers a lockdep warning for if tty_flip_buffer_push() is
called with uart_port->lock locked. This never shows up on UP kernels and comes
up only on SMP kernels.
Crash looks like this (produced with samsung.c driver):
-----
[<c0014d58>] (unwind_backtrace+0x0/0xf8) from [<c0011908>] (show_stack+0x10/0x14)
[<c0011908>] (show_stack+0x10/0x14) from [<c035da34>] (dump_stack+0x6c/0xac)
[<c035da34>] (dump_stack+0x6c/0xac) from [<c01b59ac>] (do_raw_spin_unlock+0xc4/0xd8)
[<c01b59ac>] (do_raw_spin_unlock+0xc4/0xd8) from [<c03627e4>] (_raw_spin_unlock_irqrestore+0xc/0)
[<c03627e4>] (_raw_spin_unlock_irqrestore+0xc/0x38) from [<c020a1a8>] (s3c24xx_serial_rx_chars+0)
[<c020a1a8>] (s3c24xx_serial_rx_chars+0x12c/0x260) from [<c020aae8>] (s3c64xx_serial_handle_irq+)
[<c020aae8>] (s3c64xx_serial_handle_irq+0x48/0x60) from [<c006aaa0>] (handle_irq_event_percpu+0x)
[<c006aaa0>] (handle_irq_event_percpu+0x50/0x194) from [<c006ac20>] (handle_irq_event+0x3c/0x5c)
[<c006ac20>] (handle_irq_event+0x3c/0x5c) from [<c006d864>] (handle_fasteoi_irq+0x80/0x13c)
[<c006d864>] (handle_fasteoi_irq+0x80/0x13c) from [<c006a4a4>] (generic_handle_irq+0x20/0x30)
[<c006a4a4>] (generic_handle_irq+0x20/0x30) from [<c000f454>] (handle_IRQ+0x38/0x94)
[<c000f454>] (handle_IRQ+0x38/0x94) from [<c0008538>] (gic_handle_irq+0x34/0x68)
[<c0008538>] (gic_handle_irq+0x34/0x68) from [<c00123c0>] (__irq_svc+0x40/0x70)
Exception stack(0xc04cdf70 to 0xc04cdfb8)
df60: 00000000 00000000 0000166e 00000000
df80: c04cc000 c050278f c050278f 00000001 c04d444c 410fc0f4 c03649b0 00000000
dfa0: 00000001 c04cdfb8 c000f758 c000f75c 60070013 ffffffff
[<c00123c0>] (__irq_svc+0x40/0x70) from [<c000f75c>] (arch_cpu_idle+0x28/0x30)
[<c000f75c>] (arch_cpu_idle+0x28/0x30) from [<c0054888>] (cpu_startup_entry+0x5c/0x148)
[<c0054888>] (cpu_startup_entry+0x5c/0x148) from [<c0497aa4>] (start_kernel+0x334/0x38c)
BUG: spinlock lockup suspected on CPU#0, kworker/0:1/360
lock: s3c24xx_serial_ports+0x1d8/0x370, .magic: dead4ead, .owner: <none>/-1, .owner_cpu: -1
CPU: 0 PID: 360 Comm: kworker/0:1 Not tainted 3.11.0-rc6-next-20130819-00003-g75485f1 #2
Workqueue: events flush_to_ldisc
[<c0014d58>] (unwind_backtrace+0x0/0xf8) from [<c0011908>] (show_stack+0x10/0x14)
[<c0011908>] (show_stack+0x10/0x14) from [<c035da34>] (dump_stack+0x6c/0xac)
[<c035da34>] (dump_stack+0x6c/0xac) from [<c01b581c>] (do_raw_spin_lock+0x100/0x17c)
[<c01b581c>] (do_raw_spin_lock+0x100/0x17c) from [<c03628a0>] (_raw_spin_lock_irqsave+0x20/0x28)
[<c03628a0>] (_raw_spin_lock_irqsave+0x20/0x28) from [<c0203224>] (uart_start+0x18/0x34)
[<c0203224>] (uart_start+0x18/0x34) from [<c01ef890>] (__receive_buf+0x4b4/0x738)
[<c01ef890>] (__receive_buf+0x4b4/0x738) from [<c01efb44>] (n_tty_receive_buf2+0x30/0x98)
[<c01efb44>] (n_tty_receive_buf2+0x30/0x98) from [<c01f2ba8>] (flush_to_ldisc+0xec/0x138)
[<c01f2ba8>] (flush_to_ldisc+0xec/0x138) from [<c0031af0>] (process_one_work+0xfc/0x348)
[<c0031af0>] (process_one_work+0xfc/0x348) from [<c0032138>] (worker_thread+0x138/0x37c)
[<c0032138>] (worker_thread+0x138/0x37c) from [<c0037a7c>] (kthread+0xa4/0xb0)
[<c0037a7c>] (kthread+0xa4/0xb0) from [<c000e5f8>] (ret_from_fork+0x14/0x3c)
-----
Release the port lock before calling tty_flip_buffer_push() and reacquire it
after the call.
Similar stuff was already done for few other drivers in the past, like:
commit 2389b272168ceec056ca1d8a870a97fa9c26e11a
Author: Thomas Gleixner <tglx@linutronix.de>
Date: Tue May 29 21:53:50 2007 +0100
[ARM] 4417/1: Serial: Fix AMBA drivers locking
Cc: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/tty/serial/serial-tegra.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/tty/serial/serial-tegra.c b/drivers/tty/serial/serial-tegra.c index 94a24845db4b..d0d972f7e43e 100644 --- a/drivers/tty/serial/serial-tegra.c +++ b/drivers/tty/serial/serial-tegra.c | |||
@@ -571,7 +571,9 @@ static void tegra_uart_rx_dma_complete(void *args) | |||
571 | 571 | ||
572 | tegra_uart_handle_rx_pio(tup, port); | 572 | tegra_uart_handle_rx_pio(tup, port); |
573 | if (tty) { | 573 | if (tty) { |
574 | spin_unlock_irqrestore(&u->lock, flags); | ||
574 | tty_flip_buffer_push(port); | 575 | tty_flip_buffer_push(port); |
576 | spin_lock_irqsave(&u->lock, flags); | ||
575 | tty_kref_put(tty); | 577 | tty_kref_put(tty); |
576 | } | 578 | } |
577 | tegra_uart_start_rx_dma(tup); | 579 | tegra_uart_start_rx_dma(tup); |
@@ -583,11 +585,13 @@ static void tegra_uart_rx_dma_complete(void *args) | |||
583 | spin_unlock_irqrestore(&u->lock, flags); | 585 | spin_unlock_irqrestore(&u->lock, flags); |
584 | } | 586 | } |
585 | 587 | ||
586 | static void tegra_uart_handle_rx_dma(struct tegra_uart_port *tup) | 588 | static void tegra_uart_handle_rx_dma(struct tegra_uart_port *tup, |
589 | unsigned long *flags) | ||
587 | { | 590 | { |
588 | struct dma_tx_state state; | 591 | struct dma_tx_state state; |
589 | struct tty_struct *tty = tty_port_tty_get(&tup->uport.state->port); | 592 | struct tty_struct *tty = tty_port_tty_get(&tup->uport.state->port); |
590 | struct tty_port *port = &tup->uport.state->port; | 593 | struct tty_port *port = &tup->uport.state->port; |
594 | struct uart_port *u = &tup->uport; | ||
591 | int count; | 595 | int count; |
592 | 596 | ||
593 | /* Deactivate flow control to stop sender */ | 597 | /* Deactivate flow control to stop sender */ |
@@ -604,7 +608,9 @@ static void tegra_uart_handle_rx_dma(struct tegra_uart_port *tup) | |||
604 | 608 | ||
605 | tegra_uart_handle_rx_pio(tup, port); | 609 | tegra_uart_handle_rx_pio(tup, port); |
606 | if (tty) { | 610 | if (tty) { |
611 | spin_unlock_irqrestore(&u->lock, *flags); | ||
607 | tty_flip_buffer_push(port); | 612 | tty_flip_buffer_push(port); |
613 | spin_lock_irqsave(&u->lock, *flags); | ||
608 | tty_kref_put(tty); | 614 | tty_kref_put(tty); |
609 | } | 615 | } |
610 | tegra_uart_start_rx_dma(tup); | 616 | tegra_uart_start_rx_dma(tup); |
@@ -671,7 +677,7 @@ static irqreturn_t tegra_uart_isr(int irq, void *data) | |||
671 | iir = tegra_uart_read(tup, UART_IIR); | 677 | iir = tegra_uart_read(tup, UART_IIR); |
672 | if (iir & UART_IIR_NO_INT) { | 678 | if (iir & UART_IIR_NO_INT) { |
673 | if (is_rx_int) { | 679 | if (is_rx_int) { |
674 | tegra_uart_handle_rx_dma(tup); | 680 | tegra_uart_handle_rx_dma(tup, &flags); |
675 | if (tup->rx_in_progress) { | 681 | if (tup->rx_in_progress) { |
676 | ier = tup->ier_shadow; | 682 | ier = tup->ier_shadow; |
677 | ier |= (UART_IER_RLSI | UART_IER_RTOIE | | 683 | ier |= (UART_IER_RLSI | UART_IER_RTOIE | |