[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <479FB2D7.4020804@gandalf.sssup.it>
Date: Wed, 30 Jan 2008 00:12:23 +0100
From: michael <trimarchi@...dalf.sssup.it>
To: Haavard Skinnemoen <hskinnemoen@...el.com>
CC: Remy Bohmer <linux@...mer.net>, fabio@...dalf.sssup.it,
Andrew Victor <linux@...im.org.za>,
Remy Bohmer <linux@...mer.net>,
Chip Coldwell <coldwell@...hat.com>,
Marc Pignat <marc.pignat@...s.ch>,
David Brownell <david-b@...bell.net>,
linux-kernel@...r.kernel.org, Alan Cox <alan@...rguk.ukuu.org.uk>
Subject: Re: [PATCH -mm v4 6/9] atmel_serial: Split the interrupt handler
Hi,
>> From: Remy Bohmer <linux@...mer.net>
>>
>> This patch splits up the interrupt handler of the serial port
>> into a interrupt top-half and a tasklet.
>>
>> The goal is to get the interrupt top-half as short as possible to
>> minimize latencies on interrupts. But the old code also does some
>> calls in the interrupt handler that are not allowed on preempt-RT
>> in IRQF_NODELAY context. This handler is executed in this context
>> because of the interrupt sharing with the timer interrupt.
>> +static void
>> +atmel_buffer_rx_char(struct uart_port *port, unsigned int status,
>> + unsigned int ch)
>> +{
>> + struct atmel_uart_port *atmel_port = (struct atmel_uart_port *)port;
>> + struct circ_buf *ring = &atmel_port->rx_ring;
>> + struct atmel_uart_char *c;
>>
I'm testing this patch on an at91sam9260 on 2.6.24-rt. I'm using this
patch with the tclib support for hrtimer and the clocksource pit_clk.
These are the results:
- Voluntary Kernel Preemption the system (crash)
- Preemptible Kernel (crash)
/*
* Drop the lock here since it might end up calling
* uart_start(), which takes the lock.
spin_unlock(&port->lock);
*/
tty_flip_buffer_push(port->info->tty);
/*
spin_lock(&port->lock);
*/
The same code with this comments out runs
Complete Preemption (Real-Time) ok but the serials is just unusable due
to too many overruns (just using lrz)
The system is stable and doesn't crash reverting this patch.
I don't test with the thread hardirqs active.
>> +
>> + if (!CIRC_SPACE(ring->head, ring->tail, ATMEL_SERIAL_RINGSIZE))
>> + /* Buffer overflow, ignore char */
>> + return;
>> +
>> + c = &((struct atmel_uart_char *)ring->buf)[ring->head];
>> + c->status = status;
>> + c->ch = ch;
>> +
>> + /* Make sure the character is stored before we update head. */
>> + smp_wmb();
>> +
>> + ring->head = (ring->head + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
>> +}
>> +
>>
...
>> +
>> port = &atmel_ports[pdev->id];
>> atmel_init_port(port, pdev);
>>
>> + ret = -ENOMEM;
>> + data = kmalloc(ATMEL_SERIAL_RINGSIZE, GFP_KERNEL);
>> + if (!data)
>> + goto err_alloc_ring;
>> + port->rx_ring.buf = data;
>> +
>> ret = uart_add_one_port(&atmel_uart, &port->uart);
>>
Is the kmalloc correct?
maybe:
data = kmalloc(ATMEL_SERIAL_RINGSIZE * sizeof(struct atmel_uart_char),
GFP_KERNEL);
>> if (ret)
>> goto err_add_port;
>> @@ -1013,6 +1142,9 @@ static int __devinit atmel_serial_probe(struct platform_device *pdev)
>> return 0;
>>
>> err_add_port:
>> + kfree(port->rx_ring.buf);
>> + port->rx_ring.buf = NULL;
>> +err_alloc_ring:
>> if (!atmel_is_console_port(&port->uart)) {
>> clk_disable(port->clk);
>> clk_put(port->clk);
>> @@ -1033,6 +1165,9 @@ static int __devexit atmel_serial_remove(struct platform_device *pdev)
>>
>> ret = uart_remove_one_port(&atmel_uart, port);
>>
>> + tasklet_kill(&atmel_port->tasklet);
>> + kfree(atmel_port->rx_ring.buf);
>> +
>>
Why the tasklet_kill is not done in atmel_shutdown?
Regards
Michael
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists