From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752364AbeEGSNt (ORCPT ); Mon, 7 May 2018 14:13:49 -0400 Received: from kawka.in.waw.pl ([178.62.225.244]:41303 "EHLO kawka.in.waw.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751951AbeEGSNs (ORCPT ); Mon, 7 May 2018 14:13:48 -0400 Date: Mon, 7 May 2018 17:44:59 +0000 From: Zbigniew =?utf-8?Q?J=C4=99drzejewski-Szmek?= To: Ville Syrjala Cc: linux-bluetooth@vger.kernel.org, Kay Sievers , systemd-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: Re: [systemd-devel] [PATCH bluez] hid2hci: Fix udev rules for linux-4.14+ Message-ID: <20180507174459.GH8805@in.waw.pl> References: <20180507130638.3516-1-ville.syrjala@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20180507130638.3516-1-ville.syrjala@linux.intel.com> 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 On Mon, May 07, 2018 at 04:06:38PM +0300, Ville Syrjala wrote: > From: Ville Syrjälä > > Since commit 1455cf8dbfd0 ("driver core: emit uevents when > device is bound to a driver") the kernel started emitting > "bound" and "unbound" uevents which confuse the hid2hci > udev rules. > > The symptoms on an affected machine (Dell E5400 in my case) > include bluetooth devices not appearing and udev hogging > the cpu as it's busy processing a constant stream of these > "bound"+"unbound" uevents. > > Change the udev rules only kick in for an "add" event. > This seems to cure my machine at least. > > Cc: Dmitry Torokhov > Cc: Greg Kroah-Hartman > Cc: Marcel Holtmann > Cc: Kay Sievers > Cc: systemd-devel@lists.freedesktop.org > Cc: linux-kernel@vger.kernel.org > Cc: linux-bluetooth@vger.kernel.org > Signed-off-by: Ville Syrjälä > --- > tools/hid2hci.rules | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/hid2hci.rules b/tools/hid2hci.rules > index db6bb03d2ef3..daa381d77387 100644 > --- a/tools/hid2hci.rules > +++ b/tools/hid2hci.rules > @@ -1,6 +1,6 @@ > # do not edit this file, it will be overwritten on update > > -ACTION=="remove", GOTO="hid2hci_end" > +ACTION!="add", GOTO="hid2hci_end" > SUBSYSTEM!="usb*", GOTO="hid2hci_end" This will skip over lines 22-23. Is the rule there supposed to work for ACTION==add only (in which case your patch would be OK), or also for ACTION==change? Maybe it'd be safer to just add the GOTO for bind/unbind. Zbyszek