Dear Mr Dmitry , Thanks for the reply. I understand that if some handler grabs the input device then all events will sent to that handler only. My Concern is If No one has grabbed the input device then all events should go to all handlers after application of all filter handlers. For example : If 5 handlers registered for the input device. Now among these 5 handlers 2 are filter handlers and remaining 3 are regular input handlers. In this case as per current implementation we pass the events array to each handler. Handler does its filtering then sent to handler. What i am proposing is first we have to pass input_value list to all filter handlers After filteration of events, we can send the remaining events (Some events might be removed after filter) to all handlers. In case device is grabbed we will just send the events to handler which grabbed to device. I hope to hear from you soon. Thanks On Mon, Dec 22, 2014 at 10:56 PM, Dmitry Torokhov <dmitry.torokhov@xxxxxxxxx> wrote: > Hi Anshul, > > On Mon, Dec 22, 2014 at 10:36:09PM +0530, Anshul Garg wrote: >> In function input_pass_values in input.c file , input core sends all >> events to each handler associated with the input device , >> >> rcu_read_lock(); >> >> handle = rcu_dereference(dev->grab); >> if (handle) { >> count = input_to_handler(handle, vals, count); >> } else { >> list_for_each_entry_rcu(handle, &dev->h_list, d_node) >> if (handle->open) >> count = input_to_handler(handle, vals, count); >> } >> >> after this in input_to_handler function events are filtered and sent >> to the handler. >> >> for (v = vals; v != vals + count; v++) { >> if (handler->filter && >> handler->filter(handle, v->type, v->code, v->value)) >> continue; >> if (end != v) >> *end = *v; >> end++; >> } >> >> >> >> But as per previous event filter mechanism all the events should be >> parsed from all >> handlers after that remaining events should be sent to handlers list. >> >> And in comments also its mentioned as >> >> /* >> * Pass event first through all filters and then, if event has not been >> * filtered out, through all open handles.*/ >> >> So current approach to filter events seems to be incorrect. >> >> Please help to clarify my query. > > When you "grab" input device your handler gets exclusive access to all > events coming form it. Neither filer handlers nor regular input handlers > receive events from this device until you release it. > > So I believe it works as intended. > > Thanks. > > -- > Dmitry -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html