Re: [PATCH v3 05/20] Input: Send events one packet at a time

2012-09-13 Thread Henrik Rydberg
> Filter handlers do not typically have ->event() methods, that's the > reason for reported panic. If we decide to rewind the tree, I will amend the fix here. Thanks, Henrik -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to

Re: [PATCH v3 05/20] Input: Send events one packet at a time

2012-09-13 Thread Dmitry Torokhov
On Sat, Sep 01, 2012 at 09:47:00PM +0200, Henrik Rydberg wrote: > On heavy event loads, such as a multitouch driver, the irqsoff latency > can be as high as 250 us. By accumulating a frame worth of data > before passing it on, the latency can be dramatically reduced. As a > side effect, the

Re: [PATCH v3 05/20] Input: Send events one packet at a time

2012-09-13 Thread Dmitry Torokhov
On Sat, Sep 01, 2012 at 09:47:00PM +0200, Henrik Rydberg wrote: On heavy event loads, such as a multitouch driver, the irqsoff latency can be as high as 250 us. By accumulating a frame worth of data before passing it on, the latency can be dramatically reduced. As a side effect, the special

Re: [PATCH v3 05/20] Input: Send events one packet at a time

2012-09-13 Thread Henrik Rydberg
Filter handlers do not typically have -event() methods, that's the reason for reported panic. If we decide to rewind the tree, I will amend the fix here. Thanks, Henrik -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to

[PATCH v3 05/20] Input: Send events one packet at a time

2012-09-01 Thread Henrik Rydberg
On heavy event loads, such as a multitouch driver, the irqsoff latency can be as high as 250 us. By accumulating a frame worth of data before passing it on, the latency can be dramatically reduced. As a side effect, the special EV_SYN handling can be removed, since the frame is now atomic. This

[PATCH v3 05/20] Input: Send events one packet at a time

2012-09-01 Thread Henrik Rydberg
On heavy event loads, such as a multitouch driver, the irqsoff latency can be as high as 250 us. By accumulating a frame worth of data before passing it on, the latency can be dramatically reduced. As a side effect, the special EV_SYN handling can be removed, since the frame is now atomic. This