From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755746Ab2GDSlg (ORCPT ); Wed, 4 Jul 2012 14:41:36 -0400 Received: from smtprelay-b22.telenor.se ([195.54.99.213]:33683 "EHLO smtprelay-b22.telenor.se" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755110Ab2GDSle (ORCPT ); Wed, 4 Jul 2012 14:41:34 -0400 X-SENDER-IP: [85.230.168.62] X-LISTENER: [smtp.bredband.net] X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AoFSAKiN9E9V5qg+PGdsb2JhbABFihmtExkBAQEBHgMWDSeCGAEBBAEnExwjBQsIAw44FCUKGogZCbo3FJB8YAOVNoVmg0GJPg X-IronPort-AV: E=Sophos;i="4.77,525,1336341600"; d="scan'208";a="368337985" From: "Henrik Rydberg" Date: Wed, 4 Jul 2012 20:41:57 +0200 To: Daniel Kurtz Cc: Chase Douglas , Yufeng Shen , linux-input@vger.kernel.org, Jiri Kosina , linux-kernel@vger.kernel.org, Andrew de los Reyes Subject: Re: [PATCH 1/2 v2] HID: magicmouse: Removing report_touches switch Message-ID: <20120704184157.GA272@polaris.bitmath.org> References: <1341341621-15560-1-git-send-email-miletus@chromium.org> <4FF35597.7020408@canonical.com> <20120704074049.GA380@polaris.bitmath.org> <20120704083841.GA722@polaris.bitmath.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120704083841.GA722@polaris.bitmath.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > The input events stop coming when I have more than four fingers on the > pad, but they start again if I remove the excess fingers. As if the > transport layer chokes on messages longer than some value... Yep, that's it. On my system, something sets the L2CAP MTU to a whopping 48 bytes, and the code below, from l2cap_core.c, switch (chan->mode) { case L2CAP_MODE_BASIC: /* If socket recv buffers overflows we drop data here * which is *bad* because L2CAP has to be reliable. * But we don't have any other choice. L2CAP doesn't * provide flow control mechanism. */ if (chan->imtu < skb->len) goto drop; silently ignores packets larger than that value. Duh. Henrik