From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 73E9EC433EF for ; Fri, 4 Mar 2022 18:33:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241743AbiCDSds (ORCPT ); Fri, 4 Mar 2022 13:33:48 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53028 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241709AbiCDSdk (ORCPT ); Fri, 4 Mar 2022 13:33:40 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E3CC5157239; Fri, 4 Mar 2022 10:32:46 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 420C061661; Fri, 4 Mar 2022 18:32:46 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B82BDC340E9; Fri, 4 Mar 2022 18:32:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1646418765; bh=Vu4fL4KE530EAVkO1moX8T+C8QaTr+SV8CFC4jhiG24=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=OKyDe0C9noUTIXE09lh4DwDhngdpLhcawCoQ3TQr+JTv6ZRPK55n/BnxyjuO8XA4H SG3WVlgjPdSXf3Vrl46ebyHI6HTmKORztjkkNy0JSIIMjLM86XZZD2raaHbyFLHiza tyxVx6CYcsKolpW7P8XJKAhyMHI8qd/JSf1xt+gs= Date: Fri, 4 Mar 2022 19:32:26 +0100 From: Greg KH To: Benjamin Tissoires Cc: Jiri Kosina , Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , Martin KaFai Lau , Song Liu , Yonghong Song , John Fastabend , KP Singh , Shuah Khan , Dave Marchevsky , Joe Stringer , Tero Kristo , linux-kernel@vger.kernel.org, linux-input@vger.kernel.org, netdev@vger.kernel.org, bpf@vger.kernel.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH bpf-next v2 07/28] bpf/hid: add a new attach type to change the report descriptor Message-ID: References: <20220304172852.274126-1-benjamin.tissoires@redhat.com> <20220304172852.274126-8-benjamin.tissoires@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220304172852.274126-8-benjamin.tissoires@redhat.com> Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org On Fri, Mar 04, 2022 at 06:28:31PM +0100, Benjamin Tissoires wrote: > The report descriptor is the dictionary of the HID protocol specific > to the given device. > Changing it is a common habit in the HID world, and making that feature > accessible from eBPF allows to fix devices without having to install a > new kernel. > > However, the report descriptor is supposed to be static on a device. > To be able to change it, we need to reconnect the device at the HID > level. > So whenever the report descriptor program type is attached or detached, > we call on a hook on HID to notify it that there is something to be > done. > > Signed-off-by: Benjamin Tissoires Reviewed-by: Greg Kroah-Hartman